Documentation Index
Fetch the complete documentation index at: https://docs.formbase.dev/llms.txt
Use this file to discover all available pages before exploring further.
Introduction
The Formbase API provides programmatic access to your forms and submissions. Use it to build custom integrations, automate workflows, or manage your forms from external applications.Base URL
All API requests should be made to:Authentication
The API uses Bearer token authentication with API keys. Include your API key in theAuthorization header:
Keep your API keys secure. Don’t share them in public repositories or expose them in client-side code.
Creating API Keys
- Go to your Dashboard Settings
- Click “Create Key”
- Give your key a descriptive name
- Optionally set an expiration date
- Copy the key immediately - it won’t be shown again


Rate Limits
API requests are rate limited to 100 requests per minute per API key. Rate limit information is included in the response headers:| Header | Description |
|---|---|
X-RateLimit-Remaining | Number of requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp when the rate limit resets |
429 Too Many Requests response with a Retry-After header indicating how many seconds to wait.
Error Responses
All errors follow a consistent format:Common Error Codes
| HTTP Status | Code | Description |
|---|---|---|
| 400 | BAD_REQUEST | Invalid request parameters |
| 401 | UNAUTHORIZED | Missing or invalid API key |
| 404 | NOT_FOUND | Resource not found |
| 429 | TOO_MANY_REQUESTS | Rate limit exceeded |
| 500 | INTERNAL_SERVER_ERROR | Server error |
Pagination
List endpoints return paginated results with the following structure:Query Parameters
| Parameter | Default | Max | Description |
|---|---|---|---|
page | 1 | - | Page number |
perPage | 20 | 100 | Items per page |