API Authentication#
When accessing the API, the client must include the JWT token in the Authorization header using the Bearer schema.The content of the header should look like the following:Authorization: Bearer {JWT_TOKEN}JWT Token#
JWT tokens are generated using the access key and secret keyRequired JWT Claims#
There are differences in the required JWT claims depending on the HTTP method.| Claim | Description | Http Method |
|---|
| accessKey | access key | ALL |
| nonce | random uuid (v4) | POST, PUT, DELETE |
| iat | JWT Registered Claim (link) | ALL |
JWT Token with Expiration Time#
The validity period of the JWT token is 5 seconds.
The server verifies the token’s validity period using the iat(issued at)claim. for example,Token creation time: 12:50:00
Token is valid until: 12:50:05. After that, it will expire.
Sample Codes#
Modified at 2025-06-25 10:13:48