curl --request POST \
--url https://{base_url}/v1/oauth/token \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "<string>",
"client_secret": "<string>"
}
'{
"data": {
"access_token": "access_token",
"access_token_ttl": "2025-09-03 08:50:57+00",
"refresh_token": "refresh_token",
"refresh_token_ttl": "2025-09-09 08:50:57+00",
"current_time": "2025-09-02 08:50:57+00"
}
}Generate an access token using client credentials
curl --request POST \
--url https://{base_url}/v1/oauth/token \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "<string>",
"client_secret": "<string>"
}
'{
"data": {
"access_token": "access_token",
"access_token_ttl": "2025-09-03 08:50:57+00",
"refresh_token": "refresh_token",
"refresh_token_ttl": "2025-09-09 08:50:57+00",
"current_time": "2025-09-02 08:50:57+00"
}
}Grab yourDocumentation Index
Fetch the complete documentation index at: https://developer.fin.com/llms.txt
Use this file to discover all available pages before exploring further.
client_id and client_secret from the
API Keys section
of the Orchestration Dashboard
YYYY-MM-DD HH:MM:SS+00