API Tokens

API tokens let you interact with your workspaces and projects programmatically. You can use tokens to automate workflows, integrate with other tools, or build custom applications on top of the platform.

Generating a token

  1. Go to your account settings.
  2. Navigate to the API Tokens section.
  3. Click Generate Token.
  4. Give the token a descriptive name so you can identify its purpose later.
  5. Copy the generated token immediately, it will not be shown again.

Using a token

Include the token in the Authorization header of your HTTP requests:

Authorization: Bearer <your-token>

Managing tokens

You can view all your active tokens from the API Tokens page. Each token shows its name and creation date. If a token is no longer needed or may have been compromised, revoke it immediately. Revoked tokens cannot be restored, you will need to generate a new one.

Security

  • Treat tokens like passwords, do not share them or commit them to version control.
  • Use separate tokens for different applications or scripts.
  • Revoke tokens you no longer use.
  • If you suspect a token has been exposed, revoke it and generate a new one.