For Agents
Validate a CaptureIQ API key and pull the most recent form submission across the account. Suited for integration health checks and lightweight inbound polling.
Get started with CaptureIQ 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:
"get the latest CaptureIQ submission"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with CaptureIQ API API.
Validate that a configured CaptureIQ API key is active and authorised
Retrieve the most recent form submission across the account in a single call
Poll for new inbound submissions in workflow tools without managing webhooks
Confirm an integration is connected before running a wider automation step
GET STARTED
Use for: Validate that my CaptureIQ API key still works, Retrieve the most recent CaptureIQ submission, Check whether a CaptureIQ form has received any new submissions, Get the latest submission to seed a workflow
Not supported: Does not handle form creation, full submission history, or webhooks — use for API key validation and recent submission retrieval only.
Jentic publishes the only available OpenAPI document for CaptureIQ API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for CaptureIQ API, keeping it validated and agent-ready. CaptureIQ is a forms and submissions platform, and its REST API exposes a small but practical surface: validate a configured API key and retrieve the most recent submission across the account. The spec is currently in beta, so the published surface is intentionally narrow while the platform expands to more form management endpoints. Operations teams use it to verify integrations and to poll for the latest inbound submission inside automation workflows.
Use as a smoke-test endpoint when adding CaptureIQ to a new pipeline
Patterns agents use CaptureIQ API API for, with concrete tasks.
★ Integration Health Check
Before kicking off a longer automation, a workflow tool calls GET /api/validateApiKey to confirm the configured CaptureIQ token is still valid. The call returns success or an error and acts as a single-shot probe that prevents downstream steps from running with stale credentials.
GET /api/validateApiKey with the configured bearer token and abort the workflow if the response is not 200.
Inbound Submission Polling
Where webhooks are not viable, automations poll GET /ciq/recent-submission/v1 every minute or so to fetch the latest submission and forward it to a CRM, ticketing tool, or analytics warehouse. Because the endpoint returns the most recent submission, the integration deduplicates by submission id on its side.
Every minute, GET /ciq/recent-submission/v1, dedupe by submission id, and forward new entries to the CRM.
Pre-Send Connectivity Probe
Tools that orchestrate a sequence of vendor calls run a quick probe against CaptureIQ before invoking any side-effecting steps. validateApiKey is a low-cost call that surfaces auth or network issues early so the rest of the run can fail fast with a clear cause.
GET /api/validateApiKey at workflow start, log the result, and proceed only if the call succeeds.
AI Agent Submission Triage
An agent that triages inbound form submissions uses CaptureIQ via Jentic to fetch the latest entry and classify it into the right downstream queue. It searches for the recent-submission operation, loads the schema, and executes the call — credentials stay encrypted in the Jentic vault.
Search Jentic for 'get the latest CaptureIQ submission', load the recentSubmission schema, and execute GET /ciq/recent-submission/v1 in the agent's poll loop.
2 endpoints — jentic publishes the only available openapi specification for captureiq api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/api/validateApiKey
Validate that the bearer token is active
/ciq/recent-submission/v1
Retrieve the most recent form submission
/api/validateApiKey
Validate that the bearer token is active
/ciq/recent-submission/v1
Retrieve the most recent form submission
Three things that make agents converge on Jentic-routed access.
Credential isolation
The CaptureIQ bearer JWT is stored encrypted in the Jentic vault and injected into the Authorization header at execution time. Agents receive scoped access via Jentic's MAXsystem and never see the raw token.
Intent-based discovery
Agents search Jentic by intent (e.g., 'validate CaptureIQ API key' or 'get the latest CaptureIQ submission') and Jentic returns the matching operation with its input schema, so the agent picks the right one of the 2 endpoints without browsing the help site.
Time to first call
Direct CaptureIQ integration: under an hour given the small surface. Through Jentic: under 15 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Cantrip API
Form submission listing and webhook subscriptions in a CMS context
Choose Cantrip when you need form-submission webhooks and a publishing CMS; CaptureIQ for its specific forms platform with bearer JWT auth.
Canny API
Capture structured product feedback alongside CaptureIQ form submissions
Use Canny when input is feature-request shaped and lives in a public board; CaptureIQ for arbitrary forms collected in its own platform.
Captivated Messaging API
Send an SMS follow-up when a CaptureIQ submission lands
Use CaptureIQ to detect the new submission; Captivated to send an immediate SMS to the submitter.
Specific to using CaptureIQ API API through Jentic.
Why is there no official OpenAPI spec for CaptureIQ API?
CaptureIQ is in beta and publishes a help-site reference but not an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call CaptureIQ 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 CaptureIQ API use?
CaptureIQ uses bearer JWT authentication. The token is sent as Authorization: Bearer <token>. Through Jentic the token is stored encrypted in the vault and injected at execution time, so it never enters the agent's prompt context.
Can I retrieve recent submissions with the CaptureIQ API?
Yes. GET /ciq/recent-submission/v1 returns the most recent submission across the account. Dedupe by submission id when polling so the same entry is not processed twice.
How do I check whether my CaptureIQ token is still valid through Jentic?
Search Jentic for 'validate CaptureIQ API key', load the validateApiKey operation, and execute GET /api/validateApiKey. A 200 response means the token is active.
What are the rate limits for the CaptureIQ API?
The OpenAPI spec does not enumerate rate limits while the API is in beta. Treat as low volume — poll the recent-submission endpoint at most once per minute and back off on 429 responses.
Does CaptureIQ support webhooks for new submissions?
The current beta surface only exposes the validate and recent-submission endpoints. Until a webhook is published, polling /ciq/recent-submission/v1 is the supported way to detect new entries.