curl --request POST \
--url https://{base_url}/v1/oauth/refresh-token \
--header 'Content-Type: application/json' \
--data '
{
"refresh_token": "{{client_refresh_token}}"
}
'{
"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 a new token pair based on a refresh token.
curl --request POST \
--url https://{base_url}/v1/oauth/refresh-token \
--header 'Content-Type: application/json' \
--data '
{
"refresh_token": "{{client_refresh_token}}"
}
'{
"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"
}
}Exchanges aDocumentation Index
Fetch the complete documentation index at: https://developer.fin.com/llms.txt
Use this file to discover all available pages before exploring further.
refresh_token received from the Issue Token endpoint for a new
pair of access_token and refresh_token
YYYY-MM-DD HH:MM:SS+00