Authentication
All API requests require an API key passed as a Bearer token in the Authorization header.
Getting a key
Request your free API key at developers.tooxclusive.com/get-api-key. Your key will be shown on screen instantly — copy it and store it somewhere safe.
Making requests
curl https://api.tooxclusive.com/api/v1/artists/wizkid \
-H "Authorization: Bearer txc_live_YOUR_KEY_HERE"
Alternative — query parameter
For quick testing you can pass the key as a query parameter:
curl "https://api.tooxclusive.com/api/v1/artists/wizkid?api_key=txc_live_YOUR_KEY"
warning
Never expose your API key in client-side code or public repositories. Use the query parameter method for testing only.
Key format
All API keys follow this format:
txc_live_<64 hex characters>
Security
- Keys are hashed with SHA-256 — we never store your raw key
- Your key is shown once at generation — store it immediately
- If your key is compromised, contact api@tooxclusive.com immediately