Accessing Token Manager
Navigate to your account settings to manage API tokens:Creating a New Token
Enter Token Details
Provide a descriptive name for your token (e.g., “Production API”, “Analytics Service”)
Set Expiration Period
Choose an expiration timeframe:
- 30 days - Short-term testing
- 90 days - Medium-term projects
- 6 months - Long-term integrations
- 1 year - Annual renewals
- No expiration (4 years) - Permanent access
Choose expiration periods based on your security requirements. Shorter expiration periods are more secure but require more frequent renewal.
Token Security Best Practices
Storage Guidelines
- Store tokens in environment variables, not in code
- Use secure secret management services in production
- Never commit tokens to version control systems
- Rotate tokens regularly based on your security policy
Access Control
- Create separate tokens for different applications or environments
- Use descriptive names to easily identify token purposes
- Revoke unused or compromised tokens immediately
- Monitor token usage through API logs
Environment Separation
Using API Tokens
HTTP Headers
Include your API token in the Authorization header of your requests:Code Examples
- JavaScript
- Python
- cURL
Managing Existing Tokens
Viewing Token Information
Your token list displays:- Token Name - The descriptive name you assigned
- Masked Value - First 24 characters + masked remainder for identification
- Expiration Date - When the token will expire
- Status - Active/Expired indicator
Copying Token Values
Revoking Access
When you need to revoke a token:Revoked tokens stop working immediately. Make sure to update any applications or services using the token before revoking it.
Token Expiration Handling
Monitoring Expiration
- Check expiration dates regularly in the token manager
- Set calendar reminders before tokens expire
- Monitor your application logs for authentication errors
Renewal Process
Troubleshooting
Authentication Errors
If you receive 401 Unauthorized errors:- Verify the token is correctly included in the Authorization header
- Check that the token hasn’t expired
- Ensure there are no extra spaces or characters in the token value
Token Not Working
- Confirm you’re using the complete token value
- Verify the token hasn’t been revoked
- Check that your account has the necessary permissions for the API endpoint
Rate Limiting
API tokens are subject to rate limits:- Implement exponential backoff for retries
- Monitor response headers for rate limit information
- Consider caching responses when appropriate

