For Agents
List and create CViewSurvey surveys, submit responses on behalf of respondents, and pull collected response data through four REST endpoints.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the CViewSurvey API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with CViewSurvey API API.
List the surveys configured on the account via GET /surveys
Create a new survey programmatically via POST /surveys
Submit a respondent's answers to a survey via POST /responses
Pull all responses collected to date via GET /responses
GET STARTED
Use for: List all surveys on my CViewSurvey account, Create a new customer feedback survey, Submit a survey response from a kiosk on behalf of the respondent, Pull all responses collected this week
Not supported: Does not handle email delivery, full event analytics, or web tracking - use for survey definition and response submission via the CViewSurvey platform only.
Jentic publishes the only available OpenAPI document for CViewSurvey API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for CViewSurvey API, keeping it validated and agent-ready. CViewSurvey is a survey and customer-feedback platform aimed at offline and field-data collection alongside web-based surveys. The API exposes four endpoints for listing and creating surveys and for submitting and listing survey responses. Authentication is a single Authorization header API key, which makes it straightforward to wire into a feedback pipeline or a kiosk app.
Drive a kiosk or field-data app that posts responses on behalf of users
Sync collected responses into a downstream warehouse or BI tool on a schedule
Patterns agents use CViewSurvey API API for, with concrete tasks.
★ Kiosk and field-data feedback collection
Drive a tablet kiosk or field-survey app that submits responses to CViewSurvey via POST /responses. Staff or respondents complete the form on the device and the app posts the answers in one call, with no manual data entry. The same surveys can also be served on the web for hybrid collection.
Submit a response to survey 42 with the answers payload from the kiosk and confirm a 200 response.
Programmatic survey rollout
Stand up a campaign-specific survey from code so growth teams can iterate without using the dashboard. POST /surveys creates the survey definition, then a follow-up workflow embeds the survey URL into emails or in-app prompts. Responses come back in via GET /responses for analysis.
Create a survey titled 'Q3 NPS' with three questions and confirm it appears in GET /surveys.
Analytics warehouse sync
Run a scheduled job that calls GET /responses, writes new rows into a BI warehouse, and feeds dashboards. Because the response surface is small, the integration is typically a thin script rather than a full ETL pipeline, and operators only need to handle pagination and an Authorization-header API key.
Pull all responses since yesterday from GET /responses and append them to the analytics.responses table.
AI agent feedback collector via Jentic
Let an AI agent gather structured feedback inside a workflow - for example, after a support resolution. The agent searches Jentic for 'submit a survey response', loads the schema, and executes the POST without touching the API key. This is useful when an autonomous agent needs to capture and persist user input to a structured store.
Through Jentic, submit a response to survey 7 with the answers JSON returned by the chat flow.
4 endpoints — jentic publishes the only available openapi specification for cviewsurvey api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/surveys
List surveys on the account
/surveys
Create a new survey
/responses
List collected survey responses
/responses
Submit a survey response
/surveys
List surveys on the account
/surveys
Create a new survey
/responses
List collected survey responses
/responses
Submit a survey response
Three things that make agents converge on Jentic-routed access.
Credential isolation
The CViewSurvey API key is stored encrypted in the Jentic vault. Agents call the API via Jentic with a scoped execution token - the raw key never enters prompt context.
Intent-based discovery
Agents search by intent (e.g. 'submit a survey response') and Jentic returns the CViewSurvey operation and parameter schema, so the agent calls the right endpoint without reading docs.
Time to first call
Direct CViewSurvey integration: a few hours of HTTP plumbing and key management. Through Jentic: under 15 minutes - search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Typeform
Polished web-first survey and form builder with rich integrations
Choose Typeform when polished web/mobile UX matters most; CViewSurvey is the better pick for offline kiosks or field-data workflows.
SurveyMonkey
Established survey platform with deep enterprise survey features
Pick SurveyMonkey when stakeholders already use its dashboard; CViewSurvey is lighter and simpler for embedded collection.
Jotform
Form and survey builder with strong template library
Use Jotform when you need a wide range of form templates; CViewSurvey is more focused on survey response collection.
Specific to using CViewSurvey API API through Jentic.
Why is there no official OpenAPI spec for CViewSurvey?
CViewSurvey does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call CViewSurvey 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 CViewSurvey API use?
An API key passed in the Authorization header. Through Jentic, the key is stored encrypted in the vault and injected at execution time, so it never appears in agent prompts or logs.
Can I create a survey programmatically with this API?
Yes. POST /surveys creates a new survey definition, and the same payload can carry questions and metadata. The survey then appears in GET /surveys for downstream tooling to embed or distribute.
Can I submit responses on behalf of respondents?
Yes. POST /responses accepts a survey ID and an answers payload, which is what a kiosk app or chat-based collector typically uses to record a single completed response in one call.
What are the rate limits for the CViewSurvey API?
Limits depend on your CViewSurvey plan rather than being declared in the spec. Watch for 429 responses, retry with backoff, and contact CViewSurvey support if your bulk-collection workload needs higher quotas.
How do I submit a survey response through Jentic?
Run pip install jentic, search for 'submit a survey response', load the POST /responses schema, and execute with the survey ID plus answers JSON. Jentic returns the structured response without your code holding the API key.