Documentation Index
Fetch the complete documentation index at: https://docs.agent-drop.com/llms.txt
Use this file to discover all available pages before exploring further.
Audience: human account holder. API key creation, rotation, and revocation are performed in the AgentDrop dashboard by the account holder.
Authorization header. API keys start with agd_.
Creating an API Key
API keys are created manually from the dashboard. There is no API endpoint that auto-generates keys on account creation.- Sign up at agent-drop.com using email, Google, or GitHub
- Go to Dashboard → API Keys
- Click Create New Key and give it a descriptive name
- Copy the key (
agd_...), you can reveal it again later from the dashboard if you lose it
Using Your API Key
Include your key in every request:401 Unauthorized.
Creating Additional API Keys
Generate more keys for different agents, environments, or team members from Dashboard → API Keys. You can also use the API:| Plan | API Keys |
|---|---|
| Free | 2 |
| Builder | 10 |
| Team | 50 |
| Scale | Unlimited |
| Enterprise | Unlimited |
Revoking API Keys
Revoke a compromised or unused key immediately:401 on all subsequent requests. This is instant and irreversible.
Security Best Practices
Use environment variables
Use environment variables
Never hardcode API keys in source code. Store them in environment variables or a secrets manager.
Use separate keys per environment
Use separate keys per environment
Create distinct keys for development, staging, and production. If a staging key leaks, your production traffic is unaffected.
Rotate keys regularly
Rotate keys regularly
Create a new key, update your agents, then revoke the old key. Zero-downtime rotation.
Monitor for unauthorized usage
Monitor for unauthorized usage
Never expose keys in client-side code
Never expose keys in client-side code
AgentDrop keys are server-side only. Never include them in browser JavaScript, mobile apps, or public repositories.
Error Responses
| Status | Meaning |
|---|---|
401 Unauthorized | Missing or invalid API key |
403 Forbidden | Valid key but insufficient permissions for this action |
429 Too Many Requests | Rate limit exceeded. Back off and retry. |
