curl --request POST \ --url http://localhost:8000/api/v1/auth/token \ --header "Content-Type: application/json" \ --data '{ "refresh_token": "your-refresh-token-here" }' | jq
{ "access_token": "<string>", "token_type": "bearer" }
Get a new access token
Refresh token request schema.
Successful Response
JSON payload containing access token.