v1

latestOpenAPI 3.1.02026-08-047777149.4 KB

Refresh token

Obtain a new access token using a refresh token. No bearer auth required.

post/api/v3/token/refresh/

Request body

refresh_tokenstring required

Refresh token from initial auth

Response

New token issued

access_tokenstring

JWT access token

refresh_tokenstring

Refresh token for obtaining new access token

token_typestring
expires_ininteger

Seconds until access token expires

Example response

{
  "token_type": "Bearer"
}