For Agents
Programmatically add a new survey to the platform, retrieve a survey by its purespectrum id. Covers 26 operations with apiKey authentication.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Purespectrum BuyAPI, 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%2Fvirtserver.swaggerhub.com%2Fvirtserver-swaggerhub" | 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%2Fvirtserver.swaggerhub.com%2Fvirtserver-swaggerhub" | 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 Purespectrum BuyAPI API.
Add a new survey to the platform
Retrieve a survey by its Purespectrum id
Edit an existing survey.
Deletes a survey
GET STARTED
Use for: I need to add a new survey to the platform, I want to a survey by its purespectrum id, Search for edit an existing survey., Find all deletes a survey
Not supported: Does not handle payments, communications, or developer tools - use for crm only.
BuyAPI enables Purespectrum partners to load and field surveys via API. Contact us though www.purespectrum.com for additional information. The API exposes 26 endpoints secured with apiKey authentication.
Create qualifications
Read qualifications
Patterns agents use Purespectrum BuyAPI API for, with concrete tasks.
★ CRM Operations
Use the Purespectrum BuyAPI to perform crm operations programmatically. The API provides 26 endpoints covering core functionality including add a new survey to the platform, retrieve a survey by its purespectrum id, edit an existing survey..
Call POST /surveys to add a new survey to the platform
Automated a) surveys Management
Automate a) surveys operations by combining multiple Purespectrum BuyAPI endpoints. Agents can retrieve a survey by its purespectrum id and then edit an existing survey. in a single workflow.
Call GET /surveys/{ps_survey_id} to retrieve a survey by its purespectrum id, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Purespectrum BuyAPI 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 apiKey tokens manually.
Search Jentic for 'add a new survey to the platform', load the operation schema, and execute with Jentic-managed credentials
26 endpoints — buyapi enables purespectrum partners to load and field surveys via api.
METHOD
PATH
DESCRIPTION
/surveys
Add a new survey to the platform
/surveys/{ps_survey_id}
Retrieve a survey by its Purespectrum id
/surveys/{ps_survey_id}
Edit an existing survey.
/surveys/{ps_survey_id}
Deletes a survey
/surveys/{ps_survey_id}/qualifications
Create qualifications
/surveys/{ps_survey_id}/qualifications
Read qualifications
/surveys/{ps_survey_id}/qualifications
Edit qualifications
/surveys/{ps_survey_id}/qualifications
Delete all qualifications
/surveys
Add a new survey to the platform
/surveys/{ps_survey_id}
Retrieve a survey by its Purespectrum id
/surveys/{ps_survey_id}
Edit an existing survey.
/surveys/{ps_survey_id}
Deletes a survey
/surveys/{ps_survey_id}/qualifications
Create qualifications
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Purespectrum BuyAPI by hand means passing its api_key header and managing the survey and qualification lifecycle yourself. Through Jentic you install once, import the Purespectrum BuyAPI from the API Directory, store the key once, and your agent calls it.
Permission scoping
Purespectrum puts the survey id in the URL path (/surveys/{ps_survey_id}), so a rule can pin your agent to one survey and the operations around it. You choose the operations it may call, so a destructive one like deleting a survey or its qualifications is not included unless you add it.
Credential isolation
Your Purespectrum API key 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 'create a new survey' or 'set survey qualifications', and Jentic returns the matching Purespectrum 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.
Specific to using Purespectrum BuyAPI API through Jentic.
What authentication does the Purespectrum BuyAPI use?
The Purespectrum BuyAPI uses an API key passed in the `api_key` 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 add a new survey to the platform with the Purespectrum BuyAPI?
Yes. Use the POST /surveys endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Purespectrum BuyAPI?
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 add a new survey to the platform through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'add a new survey to the platform'. Jentic returns the matching Purespectrum BuyAPI operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Purespectrum BuyAPI have?
The Purespectrum BuyAPI exposes 26 endpoints covering a) surveys, b) surveys{id}, c) qualifications operations.
/surveys/{ps_survey_id}/qualifications
Read qualifications
/surveys/{ps_survey_id}/qualifications
Edit qualifications
/surveys/{ps_survey_id}/qualifications
Delete all qualifications