/authenticate/refresh

This endpoint is used to refresh your authentication token using your refresh token

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Refreshing your token is a simple procedure, just POST your refresh token onto this endpoint in the following JSON format:

{
  "refresh_token": "<REFRESH-TOKEN>"
}

And you will receive a new access token in the following format:

{
  "access_token": "<ACCESS-TOKEN>"
}

Your refresh token has a significantly longer duration than your access token. Access tokens are valid for a couple of minutes (5 minutes) and refresh tokens are valid for a day.

Body Params
string
Response
200

Success

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here!