Skip to main content
POST
/
v1
/
auth
/
refresh-token
curl -X POST 'https://crypto-api.yativo.com/api/v1/auth/refresh-token' \
  -H 'Authorization: Bearer YOUR_REFRESH_TOKEN'
{
  "status": true,
  "data": {
    "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.yativo.com/llms.txt

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

Authorization
string
required
Pass the refresh token in the Authorization header: Bearer YOUR_REFRESH_TOKEN
curl -X POST 'https://crypto-api.yativo.com/api/v1/auth/refresh-token' \
  -H 'Authorization: Bearer YOUR_REFRESH_TOKEN'
{
  "status": true,
  "data": {
    "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
  }
}