Skip to main content
GET
/
api
/
authentication
/
refresh-token
curl -X GET 'https://crypto-api.yativo.com/api/authentication/refresh-token' \
  -H 'Authorization: Bearer YOUR_REFRESH_TOKEN'
{
  "status": "success",
  "message": "Token refreshed successfully",
  "data": {
    "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
  }
}
Authorization
string
required
Pass the refresh token in the Authorization header: Bearer YOUR_REFRESH_TOKEN
curl -X GET 'https://crypto-api.yativo.com/api/authentication/refresh-token' \
  -H 'Authorization: Bearer YOUR_REFRESH_TOKEN'
{
  "status": "success",
  "message": "Token refreshed successfully",
  "data": {
    "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
  }
}