JWTs (JSON Web Token) are used for user authentication in web or mobile applications. They have a limited lifespan (20 minutes) and require a rotation mechanism using refresh tokens, ensuring a higher level of security for client sessions.Documentation Index
Fetch the complete documentation index at: https://developer.tra.cy/llms.txt
Use this file to discover all available pages before exploring further.
Usage
To authenticate an HTTP request using a JWT, include theAuthorization header.
Getting a Token
To get a JWT token, you need to complete three steps:Token Rotation
As mentioned above, the access token must be refreshed every 20 minutes. To get a new pair of tokens, use the refresh token.Refresh tokens are valid for one month and are single-use.