API Reference
Authentication
Section titled “Authentication”API access uses a per-form API key. Generate it in the form’s settings (keys look like projme_…). Send it as a Bearer token:
Authorization: Bearer projme_…Submit a response
Section titled “Submit a response”POST /api/forms/{id}/api-submitContent-Type: application/jsonAuthorization: Bearer <api_key>
{ "data": { "field_id": "value" } }Read a form schema
Section titled “Read a form schema”GET /api/forms/{id}/api-submitAuthorization: Bearer <api_key>Returns the form’s title, description, fields, and settings, plus usage documentation.
Public schema endpoint
Section titled “Public schema endpoint”A public, unauthenticated schema endpoint (GET /api/forms/{slug}/schema) is planned for published forms. See the roadmap.
