For Agents
Create and manage Alchemer surveys, retrieve responses and statistics, and work with contact lists used to send survey campaigns.
Get started with Alchemer REST 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:
"retrieve alchemer survey responses"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Alchemer REST API API.
List and inspect Alchemer surveys, pages, and questions in an account
Create a new Alchemer survey with PUT /survey and update its configuration
Retrieve survey responses for a given survey id with /survey/{surveyId}/surveyresponse
Pull aggregate survey statistics for analysis or reporting dashboards
GET STARTED
Use for: I need to create a new survey in Alchemer, Retrieve all responses for a specific Alchemer survey, List the questions on a survey to map them to my own data model, Get aggregate statistics for a survey to populate a dashboard
Not supported: Does not handle email delivery infrastructure, advanced analytics dashboards, or quota and panel management — use for survey, response, and contact list operations only.
Jentic publishes the only available OpenAPI specification for Alchemer REST API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Alchemer REST API, keeping it validated and agent-ready. The Alchemer REST API gives programmatic access to surveys, pages, questions, responses, campaigns, and contact lists in an Alchemer account. It supports listing and managing surveys, retrieving response data and aggregate statistics, and working with the contact lists used to distribute survey campaigns. Authentication uses an api_token and api_token_secret pair sent as query parameters on every request.
List survey campaigns attached to a survey to track distribution channels
Manage Alchemer contact lists and read the contacts inside a list for outreach
Patterns agents use Alchemer REST API API for, with concrete tasks.
★ Sync survey responses to a data warehouse
A data team pulls responses from each active Alchemer survey on a schedule by calling /survey/{surveyId}/surveyresponse and writes them into a warehouse for analysis. Combining this with the survey statistics endpoint lets the team build dashboards that mix raw response rows with response rate and completion metrics. The integration removes manual CSV exports from the Alchemer UI.
GET /survey to list active surveys, then for each survey id GET /survey/{surveyId}/surveyresponse and append the rows to the warehouse table
Programmatic survey creation from a template
A research operations team uses the Alchemer REST API to create a new survey for each customer interview round by calling PUT /survey and then configuring questions and pages. This lets the team spin up surveys from a controlled template without clicking through the Alchemer designer for every project.
PUT /survey with the survey title and type, then GET /survey/{surveyId}/surveypage and /survey/{surveyId}/surveyquestion to verify the resulting structure
Contact list audit before a campaign send
Before launching an Alchemer email campaign, a marketing engineer audits the target contact list by listing every contact in /contactlist/{listId}/contactlistcontact and validating emails against an external suppression list. Only after the audit does the engineer attach the list to a campaign. This avoids sending to lapsed or invalid recipients.
GET /contactlist to find the target list id, then GET /contactlist/{listId}/contactlistcontact and pass each email to a validation step
Agent-driven survey reporting through Jentic
A Jentic agent receives an intent like 'show me last month's survey results' and chains the Alchemer operations: list surveys, fetch the matching survey, pull responses, and read aggregate statistics. The agent returns a concise summary to the user without exposing raw API tokens or response payloads.
Search Jentic for 'retrieve survey responses', load the schema for GET /survey/{surveyId}/surveyresponse, and execute it with the survey id resolved from a previous GET /survey call
13 endpoints — jentic publishes the only available openapi specification for alchemer rest api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/survey
List surveys
/survey
Create a survey
/survey/{surveyId}
Retrieve a survey
/survey/{surveyId}/surveyresponse
List survey responses
/survey/{surveyId}/surveystatistic
Get aggregate survey statistics
/contactlist
List contact lists
/contactlist/{listId}/contactlistcontact
List contacts in a contact list
/survey
List surveys
/survey
Create a survey
/survey/{surveyId}
Retrieve a survey
/survey/{surveyId}/surveyresponse
List survey responses
/survey/{surveyId}/surveystatistic
Get aggregate survey statistics
Three things that make agents converge on Jentic-routed access.
Credential isolation
Both api_token and api_token_secret are stored encrypted in the Jentic credential vault and injected as query parameters at call time. The agent never sees the raw token pair in its context.
Intent-based discovery
Agents search Jentic by intent (e.g. 'list survey responses' or 'create a survey'), and Jentic returns the matching Alchemer operation with its input schema so the agent can call it directly.
Time to first call
Direct Alchemer integration: 1-2 days for auth wiring, pagination, and response shape handling. Through Jentic: under an hour with search, load, and execute.
Alternatives and complements available in the Jentic catalogue.
SurveyMonkey API
Use SurveyMonkey when the team already runs surveys on that platform instead of Alchemer
Choose SurveyMonkey when the user's account or templates already live there; choose Alchemer for accounts standardised on Alchemer's question library
Typeform API
Use Typeform when conversational, single-question-per-page experiences matter more than Alchemer's classic page model
Choose Typeform for embedded conversational forms; choose Alchemer for longer multi-page research surveys
Qualtrics API
Use Qualtrics for enterprise experience-management surveys with deeper analytics
Choose Qualtrics for enterprise XM and CX programmes; choose Alchemer for mid-market market research and feedback
Specific to using Alchemer REST API API through Jentic.
Why is there no official OpenAPI spec for Alchemer REST API?
Alchemer does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Alchemer REST 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 Alchemer REST API use?
Alchemer requires an api_token and api_token_secret pair, both sent as query parameters on every request. Jentic stores both values encrypted and injects them at execution time so neither token enters the agent's prompt context.
Can I retrieve all responses for a specific Alchemer survey?
Yes. Call GET /survey/{surveyId}/surveyresponse with the survey id you obtained from GET /survey. The endpoint returns the response rows for that survey, which you can paginate through and write into your own store.
What are the rate limits for the Alchemer REST API?
The OpenAPI spec does not declare rate limits. Alchemer enforces plan-based limits server-side (commonly documented as a few requests per second per token); throttle long-running exports and contact list reads accordingly.
How do I create a new survey with the Alchemer REST API through Jentic?
Search Jentic for 'create an alchemer survey', load the schema for PUT /survey, and execute it with the survey title and type. Jentic returns the new survey id so an agent can immediately follow up with question and page configuration calls.
Can I read the contacts in a specific Alchemer contact list?
Yes. Call GET /contactlist to find the list id, then GET /contactlist/{listId}/contactlistcontact to retrieve the contacts attached to that list.
/contactlist
List contact lists
/contactlist/{listId}/contactlistcontact
List contacts in a contact list