What Are API Tokens?
API tokens are like passwords for applications:- They allow external programs to access your BeatPass account
- Each token has a name so you can identify what it’s used for
- Tokens can be deleted without affecting your main password
API tokens are intended for developers and advanced integrations. Most users don’t need to create API tokens.
Creating an API Token
1
Go to Account Settings
Click your profile avatar → Edit Profile, then scroll to the Developers section.
2
Click Create Token
Click the button to create a new token.
3
Name Your Token
Enter a descriptive name (3-100 characters). Examples:
- “My Desktop App”
- “Automation Script”
- “Personal Project”
4
Save the Token
Click Create to generate your token.
5
Copy Your Token
Important: Copy the token immediately. For security reasons, the full token is only shown once.
Token Security
Best Practices
- Keep tokens secret — Never share tokens publicly or commit them to code repositories
- Use descriptive names — Name tokens by their use so you know what to revoke later
- Revoke unused tokens — Delete tokens you no longer need
- Rotate periodically — Consider creating new tokens and deleting old ones regularly
What Tokens Can Do
Tokens provide access to your account through the BeatPass API. The specific permissions depend on your account type and the API endpoints used.Deleting API Tokens
If you no longer need a token or suspect it’s compromised:- Click your profile avatar → Edit Profile
- Scroll to the Developers section and find the token in your list
- Click Delete or the trash icon
- Confirm deletion
Effects of Deletion
- The token stops working immediately
- Any applications using that token will lose access
- You cannot recover a deleted token (create a new one instead)
Managing Multiple Tokens
You can create multiple tokens for different purposes:| Token Name | Use Case |
|---|---|
| ”Mobile App” | Your personal mobile integration |
| ”Analytics Tool” | Third-party analytics service |
| ”Backup Script” | Automated backup program |
Token Format
BeatPass API tokens are secure strings. When you create a token, you receive:- Token ID — A public identifier shown in your settings
- Plain Text Token — The full secret token (shown only once)
Common Questions
I lost my token. Can I see it again?
I lost my token. Can I see it again?
No. For security, the full token is only shown once when created. You’ll need to create a new token.
How many tokens can I create?
How many tokens can I create?
You can create multiple tokens. There’s no strict limit, but keep only the tokens you need.
Will deleting a token log me out?
Will deleting a token log me out?
No. API tokens are separate from your login session. Deleting a token only affects applications using that specific token.
What if someone gets my token?
What if someone gets my token?
Delete the token immediately in your settings. Then create a new one and update any legitimate applications that need access.
API Documentation
For developers looking to build integrations:- See the API Reference for available endpoints
- Review authentication requirements in Getting Started