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