Getting Your First API Key
1
Visit TaamCloud
Go to TaamCloud Platform
2
Access Developer Portal
After logging in, go to Settings > Developer Portal
3
Generate API Key
- Navigate to API Keys section
- Click “Generate New Key” button
- Save your key securely - it won’t be shown again!
4
Test Your Key
Try a simple API request:
Save your API key securely - it won’t be shown again!
Using Your API Key
Include your API key in the Authorization header:Authentication Requirements
Endpoints Requiring Auth
Endpoints Requiring Auth
The following endpoints require authentication:
- Chat Completions (
/v1/chat/completions) - Embeddings (
/v1/embeddings) - Image Generation (
/v1/images/generations) - Model List (
/v1/models) - Music Generation (
/suno/submit/music) - Reranking (
/v1/rerank)
No Auth Required
No Auth Required
These endpoints don’t require authentication:
- File Upload (
/upload) - Web Crawling (
/v1/crawl) - Web Scraping (
/v1/scrape) - Site Mapping (
/v1/map)
Best Practices
-
Key Security
- Never share your API keys
- Don’t commit keys to version control
- Use environment variables
- Rotate keys periodically
-
Rate Limiting
- Monitor your usage
- Implement backoff strategies
- Contact support for limit increases
-
Error Handling
- Handle authentication errors (401)
- Check for expired keys
- Implement key rotation logic
Managing Multiple Keys
You can generate multiple API keys for different purposes:- Development vs. Production
- Different applications
- Service isolation
Revoking Keys
If a key is compromised:- Log into the Developer Portal
- Find the compromised key
- Click “Revoke Key”
- Generate a new key
- Update your applications

