Authentication
The Zevform API uses API keys for authentication. All requests must include your key in theAuthorization header.
Getting an API Key
- Go to API in your dashboard sidebar.
- Click Create API key.
- Name your key and copy it immediately.
Making Requests
Include your API key as a Bearer token:Base URL
Rate Limits
API requests are rate-limited to ensure fair usage. If you exceed the limit, you’ll receive a429 Too Many Requests response with a Retry-After header.
Error Format
Errors return JSON with a consistent format:Common Status Codes
| Code | Meaning |
|---|---|
200 | Success |
201 | Created |
400 | Bad request — invalid parameters |
401 | Unauthorized — invalid or missing API key |
403 | Forbidden — insufficient permissions |
404 | Not found |
429 | Rate limited |
500 | Server error |