API Reference
Integrate FillingBee into your applications using our powerful REST API.
Authentication
All API requests must be authenticated using a Bearer token in the Authorization header.
Authorization: Bearer YOUR_API_KEY
Forms API
List Forms
Retrieve all forms within your organization.
GET /v1/forms
Retrieve Submissions
Get a list of submissions for a specific form.
GET /v1/forms/:id/submissions
Response:
{
"data": [
{
"id": "sub_1",
"data": { "email": "user@example.com", "msg": "Hello" },
"created_at": "2024-01-10T..."
}
]
}Webhooks
Subscribe to events to receive real-time notifications when your forms are submitted.
form.submitted: Triggered when a new submission is verified.form.created: Triggered when a new form is published.
Support
Need help? Contact our developer support at api@fillingbee.com.