Issues access tokens for authorization_code, client_credentials, and refresh_token grants using an application/x-www-form-urlencoded request body. For the authorization_code grant, the partner exchanges the code obtained from GET /oauth/authorize along with a PKCE code_verifier.
Documentation Index
Fetch the complete documentation index at: https://docs.coinlist.co/llms.txt
Use this file to discover all available pages before exploring further.
Token request params
OAuth grant type. Supported values are authorization_code, client_credentials, and refresh_token.
authorization_code, client_credentials, refresh_token OAuth client identifier. Required for all grant types when client authentication is sent in the request body.
OAuth client secret. Required for all grant types when client authentication is sent in the request body.
Authorization code received from the /oauth/authorize endpoint. Required when grant_type is authorization_code.
PKCE code verifier corresponding to the code_challenge sent to /oauth/authorize. Required when grant_type is authorization_code.
Must match the redirect_uri used in the original /oauth/authorize request. Required when grant_type is authorization_code.
Required when grant_type is refresh_token.