API authentication
Last updated: 2026-06-06
•1 min readAPI Authentication
Secure Developer API requests with a TaskForceAI API key.
Getting an API Key
- Log in to the API Console
- Open API Keys
- Click "Create New Key"
- Copy and securely store your key
Using Your API Key
Send your key in the x-api-key header:
curl https://taskforceai.chat/api/v1/developer/health \
-H "x-api-key: YOUR_API_KEY"
Base URL
https://taskforceai.chat/api/v1/developer
SDKs use this base URL by default. Use the full URL when calling the REST API directly.
Key Security
- Never expose keys in client-side code
- Use environment variables or a secrets manager
- Create separate keys for development and production
- Rotate and revoke keys from the API Console
Next Steps
See the REST API documentation for the full endpoint reference.