POST
/
v1
/
auth
/
refresh
Refresh Access Token
curl --request POST \
  --url https://api.tradearies.dev/v1/auth/refresh \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "email": "<string>",
  "refresh_token": "<string>"
}'
{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}

Authorizations

X-API-Key
string
header
required

Body

application/json

Response

200
application/json

Token refreshed successfully

The response is of type object.