Authentication
All API requests to Jabrod require authentication using an API key.Getting an API Key
1
Sign up or Log in
Go to agent.jabrod.com
2
Navigate to API Keys
Click on your profile > API Keys
3
Create a new key
Click Create Key, give it a name, and copy the key
Using Your API Key
With the SDK
With REST API
Include your API key in theAuthorization header:
API Key Format
Jabrod API keys follow this format:| Prefix | Description |
|---|---|
jb_ | Standard API key |
Security Best Practices
Never expose keys in client-side code
Never expose keys in client-side code
API keys should only be used in server-side code. Never include them in frontend JavaScript.
Use environment variables
Use environment variables
Store API keys in environment variables, not in your codebase.
Rotate keys regularly
Rotate keys regularly
Periodically create new keys and revoke old ones.
Use separate keys for environments
Use separate keys for environments
Use different API keys for development, staging, and production.
Rate Limits
| Plan | Requests/minute | Requests/day |
|---|---|---|
| Free | 60 | 1,000 |
| Pro | 300 | 50,000 |
| Enterprise | Custom | Custom |
