Skip to main content
POST
/
v1
/
platform
/
auth
/
token
Exchange Client Token
curl --request POST \
  --url https://api.sandbox.finogates.com/v1/platform/auth/token \
  --header 'Content-Type: application/json' \
  --data '
{
  "client_id": "<string>",
  "client_secret": "<string>"
}
'
{
  "status_code": 123,
  "data": "<unknown>",
  "query_generated_time": 123
}

Documentation Index

Fetch the complete documentation index at: https://developer.finogates.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

OAuth2 client-credentials token exchange request.

client_id
string
required

Client identifier issued during onboarding. Prefixed with fg_test_cl_ (sandbox) or fg_live_cl_ (production).

Required string length: 5 - 120
Example:

"fg_test_cl_aBcDeFgHiJkLmNoPqRsTuV"

client_secret
string
required

Client secret issued during onboarding. Shown only once at creation or rotation.

Required string length: 10 - 255
Example:

"fg_test_sk_aBcDeFgHiJkLmNoPqRsTuVwXyZaBcDeFgHiJkLmNoPqRsTuVwXyZ"

Response

Successful Response

Standard response wrapper for single-object responses and errors.

status_code
integer
required

HTTP status code for the response.

data
any
required

Payload or error details.

query_generated_time
integer
required

UTC timestamp (milliseconds since epoch) when response was generated.