API Reference

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

Log in to see full request history

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
required

Refresh token provided when invoking authenticate method

Response

Language
Click Try It! to start a request and see the response here! Or choose an example:
application/json