How to Manage Access Tokens
a. How to Create an Access Token?
b. How to Delete an Access Token?
Last updated
What are Access Tokens?
Access tokens are API credentials that allow you to securely authenticate programmatic requests to your inference endpoints. Instead of using your account credentials directly, you generate a scoped token that grants access only to the specific endpoints you choose. This ensures that your deployed models are only accessible to authorized clients and applications.
By default, tokens expire after 30 days. You can set a custom expiration date. Once a token is deleted, any API requests using it will immediately fail.

Field
Description
Token Name
A unique name for your token. Use lowercase letters, numbers, and hyphens only.
Accessible Endpoints
Select one or more endpoints this token is allowed to access.
Expires At (Optional)
Set a custom expiration date and time for the token. Tokens expire after 30 days by default.
Deleting a token is permanent. Any API requests using this token will immediately fail.
Last updated