Colyon Logo

Monchain Check

Monchain Check·HTTP API·V1

Auth Token

Exchange client credentials for a short-lived bearer token

Issue auth token

Easily exchange Monchain Check client credentials for a scoped bearer token directly from this page. Provide your org-issued OAuth2 keys and run the request without leaving the docs.

Monchain · Auth

Exchange client credentials

Provide your OAuth2 client details, then issue a short-lived bearer token directly from the docs.

Endpoint

POST https://api.monchain.ai/p/uss/api/v1/oauth2/token

All fields are required before running the request.

Request preview

{
"endpoint": "https://api.monchain.ai/p/uss/api/v1/oauth2/token",
"method": "POST",
"headers": {
"Content-Type": "application/x-www-form-urlencoded",
"x-api-key": "bc4bb64d-094f-40a7-af2c-cbe823411301"
},
"body": {
"grant_type": "client_credentials",
"client_id": "55d3ce65-1f76-454b-ac4e-23617978131e",
"client_secret": "••••••••••",
"scope": "client:read client:write"
}
}

Response

{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "Bearer",
"expires_in": 300,
"scope": "client:read client:write"
}