Refresh token
POST /refresh-token
This endpoint lets you to refresh your API Key and Refresh Token by providing a valid Refresh Token.
Headers
No headers required.
Request body
Parameter
Type
Description
refreshToken
string
The refresh token to validate and retrive a new API key and refresh token.
Response
{
"status": "success",
"data": {
"apiKey": "e0dc59c5c2ac26aecae421318076efa420c219898fdaedd7cb6a8571b8043d10",
"refreshToken": "030ed091334a11efb97d8829d1a28493a20379d22c759eb1528d37f43b9a374d76970395aa473cf4",
"expiresAt": "2025-01-27T12:57:00.802Z"
}
}
Last updated
Was this helpful?