Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Cynthia AI 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%2Fandromeda-intelligence.com%2Fandromeda-intelligence" | 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%2Fandromeda-intelligence.com%2Fandromeda-intelligence" | 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 Cynthia AI API.
Exchange short-lived Zapier credentials for a Cynthia AI bearer token
Validate Zapier connection credentials before publishing review data
Forward incoming review payloads from Zapier triggers into Cynthia's review pipeline
Authenticate inbound automation traffic using bearer tokens issued by Cynthia
Wire Zapier multi-step Zaps into Cynthia review ingestion without writing custom auth code
GET STARTED
Patterns agents use Cynthia AI API for, with concrete tasks.
★ Zapier Review Ingestion
Wire a Zapier Zap that watches an external review source (Google, Trustpilot, internal CRM) and forwards each new review into Cynthia AI for sentiment and topic analysis. The integration uses POST /zapier_token_exchange to obtain an access token, then POST /zapier_receive_data to deliver the review payload. Setup typically takes under an hour because Cynthia's three-endpoint surface maps directly onto a standard Zapier auth and action handler.
Call POST /zapier_token_exchange with the supplied OAuth code, store the returned bearer token, then POST /zapier_receive_data with a single review record and verify a 2xx response
Zapier Credential Health Check
Periodically verify that a stored Cynthia AI integration is still authorised before a Zap fires by calling POST /zapier_test_credentials with the current bearer token. This avoids dropped review events when the token has been rotated or revoked and lets ops teams alert on broken connections instead of discovering them via missing data.
Call POST /zapier_test_credentials with the stored bearer token and surface a re-auth prompt if the response is non-2xx
AI Agent Review Pipeline via Jentic
An AI agent that monitors brand reputation can pull new reviews from a source system and push them into Cynthia for AI-driven analysis without managing OAuth flows directly. Through Jentic the agent searches for the operation, loads the schema for /zapier_receive_data, and executes the call with a bearer token retrieved from the vault. This keeps Cynthia's bearer token isolated from the agent's prompt and tool context.
Search Jentic for 'forward a review to Cynthia AI', load POST /zapier_receive_data, and execute with a structured review payload sourced from the agent's monitoring tool
3 endpoints — jentic publishes the only available openapi specification for cynthia ai api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/zapier_token_exchange
Exchange Zapier OAuth code for a Cynthia bearer token
/zapier_test_credentials
Validate stored Cynthia bearer token
/zapier_receive_data
Forward an incoming review payload into Cynthia
/zapier_token_exchange
Exchange Zapier OAuth code for a Cynthia bearer token
/zapier_test_credentials
Validate stored Cynthia bearer token
/zapier_receive_data
Forward an incoming review payload into Cynthia
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Cynthia AI API by hand means running the Zapier token exchange, carrying the bearer token, and posting review payloads to the right endpoint yourself. Through Jentic you install once, import Cynthia AI from the API Directory, store the token once, and your agent calls it.
Permission scoping
Cynthia AI exposes only the token-exchange, credential-test, and data-receive endpoints, so scope the agent to the operations it needs, such as forwarding a review with zapier_receive_data. You choose the operations it may call, so credential exchange is not included unless you add it.
Credential isolation
Your Cynthia AI bearer token and Zapier OAuth code are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'forward a review to Cynthia AI', and Jentic returns the matching Cynthia 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 Cynthia AI API through Jentic.
Why is there no official OpenAPI spec for Cynthia AI API?
Andromeda Intelligence does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Cynthia AI API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.
What authentication does the Cynthia AI API use?
Cynthia AI uses HTTP bearer authentication. Clients first call POST /zapier_token_exchange to convert a Zapier OAuth code into a bearer token, then send that token in the Authorization header on subsequent calls. Through Jentic the bearer token is stored in the encrypted vault and never injected into the agent's prompt context.
Can I forward arbitrary review data with the Cynthia AI API?
Yes, the POST /zapier_receive_data endpoint accepts review payloads from a Zapier-triggered source. The schema is shaped around Zapier action handlers, so the most reliable integration path is via a Zap that already maps the source review fields into the expected request body.
What are the rate limits for the Cynthia AI API?
The OpenAPI spec does not declare explicit rate limits. Treat the integration as best-effort and implement retry-with-backoff for non-2xx responses on /zapier_receive_data. Confirm production quotas with Andromeda Intelligence before sending high-volume traffic.
How do I send a review through the Cynthia AI API via Jentic?
Run pip install jentic, then search Jentic for 'forward a review to Cynthia AI'. Jentic returns POST /zapier_receive_data with its input schema, loads the bearer credential from the vault, and executes the call with your review payload.
Do I need to call the token exchange before every Cynthia request?
No. Call POST /zapier_token_exchange once to obtain a bearer token, then reuse it on subsequent /zapier_receive_data calls. Use POST /zapier_test_credentials periodically to confirm the token is still valid before high-volume runs.
Can I limit what my agent is allowed to do with the Cynthia AI API?
Yes. Because you run Jentic One yourself, you decide which of Cynthia AI's three operations your agent may call, and your own rules govern which credentials it may use. If the agent only needs to forward reviews, you can scope it to POST /zapier_receive_data and leave out POST /zapier_token_exchange and POST /zapier_test_credentials, so credential exchange is not available unless you add it. The stored bearer token is injected only at execution time and never enters the agent's prompt or context.
Know of an official OpenAPI document? Contribute it →
For Agents
Authenticate Zapier-style integrations with Cynthia AI and forward review payloads into its analysis pipeline through three bearer-secured endpoints.
Use for: I need to push a Zapier-triggered review payload into Cynthia AI, Exchange a Zapier OAuth code for a Cynthia bearer token, Check whether my Zapier credentials are still valid for Cynthia, Forward a new review record from a Zapier trigger to Cynthia
Not supported: Does not handle review collection, moderation, or display, and does not run the AI analysis itself - use for forwarding Zapier-triggered review payloads into Cynthia's pipeline only.
Jentic publishes the only available OpenAPI specification for Cynthia AI API, keeping it validated and agent-ready. Cynthia AI from Andromeda Intelligence is a review-management service that exposes a small Zapier-flavoured integration surface for exchanging tokens, validating credentials, and receiving review payloads from automation pipelines. The API is built around three operations that let external workflows authenticate and push review records into the Cynthia platform for downstream AI-driven analysis. It is intended as a glue layer between Zapier-style triggers and Cynthia's review pipeline rather than a general-purpose search or analytics endpoint.