Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ivory.finance/llms.txt

Use this file to discover all available pages before exploring further.

Request body

FieldRequiredDescription
refresh_tokenYesThe refresh token received at login or registration
curl -X POST https://api.ivory.finance/v1/auth/refresh \
  -H "Content-Type: application/json" \
  -d '{
    "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
  }'
{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "token_type": "bearer"
}
Refresh tokens expire after 7 days and are single-use — they are invalidated after each successful refresh. Store the new access_token and keep the same refresh_token until it expires.