Skip to main content
POST
/
onramp
/
auth
/
token
Create Onramp Auth Token
curl --request POST \
  --url https://api.coinvoyage.io/v3/onramp/auth/token \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "auth_intent_id": "lai_test_123"
}
'
{
  "expires_in": 5400,
  "link_auth_token_client_secret": "latcs_test_123"
}

Authorizations

X-API-KEY
string
header
required

Headers

X-API-KEY
string
required

API key for authentication

Body

application/json
auth_intent_id
string
required
Example:

"lai_test_123"

Response

Link auth token client secret created

Example:

"latcs_test_123"

expires_in
integer<int64>
required
Example:

5400