Back to docs
API Authentication
How to get your API key and authenticate with the CooVex API.
Getting your API key
All CooVex API requests require an API key. To get yours:
- Go to Settings → API Keys in your CooVex dashboard
- Click Generate New Key
- Copy the key and store it securely — it will not be shown again
Keep your API key secret. Never expose it in frontend JavaScript or public repositories.
Using your API key
Authorization: Bearer YOUR_API_KEY
Base URL
https://app.coovex.com/api/v1
Quick test
curl https://app.coovex.com/api/v1/ping -H "Authorization: Bearer YOUR_API_KEY"
# { "ok": true, "workspace": "Your Workspace" }