For Agents
Programmatically create a distributor, list all distributors for a survey. Covers 7 operations with bearer authentication.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the SurveyRock 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.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fsurveyrock.com%2Fsurveyrock" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fsurveyrock.com%2Fsurveyrock" | 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 SurveyRock API.
Create a distributor
List all distributors for a survey
Get number of responses
Query and filter SurveyRock API records by parameters
GET STARTED
Use for: I need to a distributor, I want to all distributors for a survey, Search for respondents, Find all number of responses
Not supported: Does not handle payments, communications, or crm - use for education only.
SurveyRock is a survey creation tool. API v1 provides access to surveys, distributors, responses and respondents. The API exposes 7 endpoints secured with bearer authentication.
Monitor SurveyRock API operational status and events
Patterns agents use SurveyRock API for, with concrete tasks.
★ Education Operations
Use the SurveyRock API to perform education operations programmatically. The API provides 7 endpoints covering core functionality including create a distributor, list all distributors for a survey, list respondents.
Call POST /distributors/create_distributor to create a distributor
Automated Distributors Management
Automate distributors operations by combining multiple SurveyRock API endpoints. Agents can list all distributors for a survey and then list respondents in a single workflow.
Call GET /distributors/get_distributor_list to list all distributors for a survey, then verify the result
AI Agent Integration via Jentic
AI agents discover and call SurveyRock API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle bearer tokens manually.
Search Jentic for 'create a distributor', load the operation schema, and execute with Jentic-managed credentials
7 endpoints — surveyrock is a survey creation tool.
METHOD
PATH
DESCRIPTION
/distributors/create_distributor
Create a distributor
/distributors/get_distributor_list
List all distributors for a survey
/responses/get_respondent_list
List respondents
/responses/get_number_of_responses
Get number of responses
/responses/get_response_details
Get response details
/surveys/get_survey_list
List surveys
/surveys/get_survey_details
Get survey details
/distributors/create_distributor
Create a distributor
/distributors/get_distributor_list
List all distributors for a survey
/responses/get_respondent_list
List respondents
/responses/get_number_of_responses
Get number of responses
/responses/get_response_details
Get response details
What agents get from Jentic-routed access to this vendor.
Setup
Wiring SurveyRock by hand means setting up its bearer token auth against the api.surveyrock.com host and threading that token through every survey and response call yourself. Through Jentic you install once, import the SurveyRock API from the API Directory, store the bearer token once, and your agent calls it.
Permission scoping
The SurveyRock operations here are collection reads and a distributor create that carry their targets in the query or request body, so scope your agent to the operations it needs, such as get_survey_list and get_response_details. You pick that set, so a write like create_distributor is only included if you add it.
Credential isolation
Your SurveyRock bearer token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'list survey responses' or 'create a distributor', and Jentic returns the matching SurveyRock operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Stripe
Complementary API for broader integration workflows
Use alongside SurveyRock API for multi-service workflows
Specific to using SurveyRock API through Jentic.
What authentication does the SurveyRock API use?
The SurveyRock API uses a Bearer token in the Authorization header. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.
Can I create a distributor with the SurveyRock API?
Yes. Use the POST /distributors/create_distributor endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the SurveyRock API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I create a distributor through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'create a distributor'. Jentic returns the matching SurveyRock API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the SurveyRock API have?
The SurveyRock API exposes 7 endpoints covering distributors, responses, surveys operations.
/surveys/get_survey_list
List surveys
/surveys/get_survey_details
Get survey details