Skip to main content
POST
/
api
/
v1
/
token
/
refresh
Refresh Token
curl --request POST \
  --url https://api.example.com/api/v1/token/refresh \
  --header 'Content-Type: application/json' \
  --data '
{
  "refresh_token": "<string>"
}
'
{
  "access_token": "<string>",
  "token_type": "bearer",
  "refresh_token": "<string>",
  "expires_in": 123
}

Body

application/json

Request to exchange refresh token for new access token.

refresh_token
string
required

Response

Successful Response

Token response with optional refresh token.

access_token
string
required
token_type
string
default:bearer
refresh_token
string | null
expires_in
integer | null