For Agents
List and create BEEKAI forms and read or submit form responses through a focused 4-endpoint forms-and-submissions API.
Get started with BEEKAI API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"list BEEKAI form submissions"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with BEEKAI API API.
List all forms configured under the BEEKAI account
Create a new form definition with fields and validation rules
List submissions captured for a form with pagination
Post a new submission to an existing form on behalf of a respondent
GET STARTED
Use for: List the forms configured in my BEEKAI workspace, Create a new contact form with name, email, and message fields, Retrieve the latest submissions for the lead-magnet form, Post a new submission to a feedback form on behalf of a user
Not supported: Does not handle email delivery, payment collection, or advanced branching logic — use for creating forms and reading or submitting form responses only.
Jentic publishes the only available OpenAPI document for BEEKAI API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for BEEKAI API, keeping it validated and agent-ready. BEEKAI is a no-code form builder for collecting structured data from web visitors, customers, and survey respondents. The API is intentionally small with four endpoints across Forms and Submissions, letting integrations list and create forms and read or post submissions, secured by an API key sent in the Authorization header.
Patterns agents use BEEKAI API API for, with concrete tasks.
★ Lead capture for marketing sites
Marketing teams use BEEKAI to publish lead-capture forms on landing pages and read the submissions into a CRM or email tool. POST /forms creates the form definition and GET /submissions returns the captured responses, letting an integration sync new leads into HubSpot, beehiiv, or a custom data warehouse on a schedule.
Create a lead-capture form named Spring Webinar Signup with name, email, and company fields, then poll /submissions every hour and forward new entries to a CRM
Customer feedback collection
Product and CX teams collect open-ended feedback through a BEEKAI form embedded in-app or sent via email. The integration creates the form once with POST /forms, captures responses to /submissions, and downstream pipelines can summarise and tag the feedback. The minimal API surface keeps the integration cost low.
Read all submissions from the customer-feedback form filed in the past 14 days and produce a summary of common themes
Server-side submission ingest
Some integrations need to record events as form submissions for downstream analysis even when no web form was rendered. POST /submissions accepts a payload against an existing form ID, letting backend services log structured records that share the same export pipeline as user-rendered submissions.
Post a submission to form fid_99 with payload source webhook and value 1, then confirm the submission count has incremented
AI agent integration for forms and surveys
Marketing and ops teams use AI agents through Jentic to read recent BEEKAI submissions, route them to CRMs, and create new forms when campaigns spin up. The agent searches Jentic for the right BEEKAI operation, loads the schema, and executes with the API key held in the Jentic vault, so the key never appears in agent context.
Through Jentic, find BEEKAI's submissions list operation and forward all new submissions for form fid_99 to a sales agent inbox once per hour
4 endpoints — jentic publishes the only available openapi specification for beekai api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/forms
List forms
/forms
Create a new form
/submissions
List form submissions
/submissions
Post a new submission
/forms
List forms
/forms
Create a new form
/submissions
List form submissions
/submissions
Post a new submission
Three things that make agents converge on Jentic-routed access.
Credential isolation
The BEEKAI API key is stored encrypted in the Jentic vault. Jentic injects the Authorization header at execution time so the key never enters agent context.
Intent-based discovery
Agents search Jentic by intent (e.g. list form submissions or create a contact form) and Jentic returns the matching BEEKAI operation with its input schema, so the agent calls /forms or /submissions without browsing docs.
Time to first call
Direct BEEKAI integration: a few hours to wire the small surface and pagination. Through Jentic: under 30 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Typeform
Conversational form builder with broader logic and design options than BEEKAI's minimal surface.
Choose Typeform when the agent needs branching logic, advanced design, or rich integrations beyond BEEKAI's create-and-read surface.
Tally
Free-tier no-code form builder; alternative for cost-sensitive small projects.
Choose Tally when the agent needs a free-tier form builder for low-volume data collection rather than BEEKAI's paid plan features.
Jotform
Form builder with deep integration catalogue and HIPAA-eligible plans.
Choose Jotform when the agent needs HIPAA compliance or a wide pre-built integration catalogue rather than BEEKAI's minimal API surface.
Specific to using BEEKAI API API through Jentic.
Why is there no official OpenAPI spec for BEEKAI API?
BEEKAI does not publish an OpenAPI specification alongside its product docs. Jentic generates and maintains this spec so that AI agents and developers can call BEEKAI API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the BEEKAI API use?
BEEKAI uses an API key sent in the Authorization header on every request. Generate the key from your BEEKAI workspace settings. Jentic stores the key in its vault and injects the header at execution time so the key never enters agent context.
Can I create a form programmatically with the BEEKAI API?
Yes. POST /forms accepts a form definition with fields and validation rules and returns a form ID you can embed on a site or reference when posting submissions. Use GET /forms to list existing forms.
How do I read form submissions through Jentic?
Search Jentic for list BEEKAI form submissions to find GET /submissions. Load the schema and execute with the form ID and any pagination parameters. Pipe the results into a CRM sync or summarisation step.
Does the BEEKAI API support server-side submissions?
Yes. POST /submissions accepts a payload against an existing form ID, so backend services can log structured records that share the same export pipeline as web-rendered submissions.
What are the rate limits for the BEEKAI API?
BEEKAI does not publish explicit rate limits in the spec. If you receive HTTP 429 responses, back off and retry with exponential delay, and contact BEEKAI support if you need additional headroom for an aggressive sync job.