cURL
curl --request POST \ --url https://api.lyceum.technology/api/v2/external/auth/refresh \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "refresh_token": "<string>" } '
{ "access_token": "<string>", "refresh_token": "<string>", "expires_at": 123 }
Refresh an access token using a refresh token.
Pass an API key (prefixed lk_) or a JWT access token as a bearer token. Generate API keys in the dashboard at https://dashboard.lyceum.technology/api-keys.
lk_
Successful Response