Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the OppBot 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%2Foppbot.com%2Foppbot" | 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%2Foppbot.com%2Foppbot" | 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 OppBot API.
Add a prospect record with contact details and assign ownership
Update a prospect's status, fields, or owner from another system
Push a prospect into a named outbound sequence to start nurture
Retrieve prospect records by ID for sync into a CRM
Remove a prospect record when the lead opts out or converts
GET STARTED
Verify a workspace's bearer token through the /me endpoint
Patterns agents use OppBot API for, with concrete tasks.
★ Inbound lead capture to OppBot nurture
When an inbound form fills, an automation agent can call POST /prospect/store to create the OppBot prospect and POST /prospects/sequences/add to drop them straight into a cold-outreach sequence. This shortens the gap between marketing capture and sales follow-up to seconds and removes the need for a CSV upload step.
POST /prospect/store with email, first_name, last_name, then POST /prospects/sequences/add to push the new prospect into the 'inbound-warm' sequence.
CRM-to-OppBot sync
RevOps teams can keep OppBot in step with a CRM by treating the OppBot endpoints as the system of action. New CRM contacts trigger POST /prospect/store, status changes trigger PUT /prospect/update/{id}, and deletions trigger DELETE /prospects/delete/{id}. The /me endpoint provides a quick health check for the integration credentials.
On a CRM webhook, call PUT /prospect/update/{id} with the new title and company so the OppBot record matches the CRM.
Prospect enrichment then sequence
Agents can enrich a prospect with a data provider, write the enriched fields back to OppBot via PUT /prospect/update/{id}, and then call POST /prospects/sequences/add only if the enrichment confidence clears a threshold. This avoids burning sequence sends on weak leads.
Enrich the prospect with Clearbit, PUT /prospect/update/{id} with the enriched company, then POST /prospects/sequences/add only when confidence > 0.8.
AI agent for outbound demand gen
Through Jentic, an AI agent can answer 'add this person to our outbound flow' by translating it into a chained call: POST /prospect/store followed by POST /prospects/sequences/add. The bearer token sits in your Jentic One instance, so an SDR-assistant agent can run this multiple times a day without exposing the credential.
Search Jentic for 'add a prospect to oppbot and start a sequence', execute /prospect/store then /prospects/sequences/add for the supplied lead.
7 endpoints — jentic publishes the only available openapi specification for oppbot api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/me
Test authentication for the workspace token
/prospects
List prospects in the workspace
/prospect/store
Add a new prospect
/prospect/update/{id}
Update an existing prospect
/prospects/delete/{id}
Delete a prospect
/prospects/sequences/add
Add a prospect to a sequence
/me
Test authentication for the workspace token
/prospects
List prospects in the workspace
/prospect/store
Add a new prospect
/prospect/update/{id}
Update an existing prospect
/prospects/delete/{id}
Delete a prospect
/prospects/sequences/add
Add a prospect to a sequence
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the OppBot API by hand means sending its bearer token on every call and keeping the prospect store, update, delete, and sequence-enrolment routes straight yourself. Through Jentic you install once, import the OppBot API from the API Directory, store the token once, and your agent calls it.
Permission scoping
OppBot puts the prospect id in the URL path (/prospect/update/{id}, /prospects/delete/{id}), so a rule can pin your agent to updating one prospect and nothing else. You choose the operations it may call, so deleting a prospect is not included unless you add it.
Credential isolation
Your OppBot bearer token is stored once, encrypted, by your own Jentic One instance and injected as the Authorization header at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'add a prospect to oppbot' or 'enrol a prospect in a sequence', and Jentic returns the matching 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 OppBot API through Jentic.
Why is there no official OpenAPI spec for OppBot API?
OppBot does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call OppBot 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 OppBot API use?
The OppBot API uses an HTTP bearer token issued per workspace. Through Jentic the token is stored encrypted in the vault and added as the Authorization header on each call, so an agent never receives the raw token.
Can I add a prospect to a sequence in one call with this API?
It takes two calls: POST /prospect/store creates the prospect and POST /prospects/sequences/add enrolls them in the named sequence. The two operations are commonly chained together by Jentic agents to mirror a one-step user intent.
What are the rate limits for the OppBot API?
OppBot does not publish a fixed rate limit in this spec. Treat 429 responses with exponential backoff and check the OppBot workspace settings for any per-plan ceilings before running a high-volume sync.
How do I delete a prospect through Jentic?
Search Jentic for 'delete an oppbot prospect', load the DELETE /prospects/delete/{id} operation, and execute it with the prospect ID. The vaulted bearer token is supplied automatically.
How do I test that my OppBot token is working?
Call GET /me. A 200 response with workspace details confirms the bearer token is valid; any 401 or 403 indicates the token is missing, expired, or scoped to a different workspace.
Can I limit what my agent is allowed to do with the OppBot API?
Yes. Because you run Jentic One yourself, your own rules decide which OppBot operations your agent may call, so you can allow POST /prospect/store and POST /prospects/sequences/add while leaving DELETE /prospects/delete/{id} off the list entirely. Since OppBot carries the prospect id in the URL path on PUT /prospect/update/{id} and DELETE /prospects/delete/{id}, a rule can pin the agent to a single prospect id rather than the whole workspace. Your bearer token is stored by your own instance and injected at call time, so the agent only ever exercises the operations and credentials you have granted it.
Know of an official OpenAPI document? Contribute it →
For Agents
Add and manage prospects in an OppBot workspace and push them into outbound nurture sequences using a bearer token, across 7 REST endpoints.
Use for: Add a new prospect from an inbound form into OppBot, Push a prospect into the cold-email sequence after enrichment, Retrieve a prospect's record by ID, List all prospects in the workspace
Not supported: Does not handle email sending infrastructure, calendaring, or CRM record-of-truth - use for OppBot prospect management and sequence enrolment only.
Jentic publishes the only available OpenAPI specification for OppBot API, keeping it validated and agent-ready. OppBot is a sales-engagement platform that nurtures underserved leads into sales-ready opportunities for demand generation teams. The API exposes a small set of endpoints for managing prospects - listing, fetching, creating, updating, and deleting prospect records - and pushing prospects into outbound sequences. Authentication is a bearer token issued by OppBot to each customer workspace.
This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.
Base layer of spec validity and structural soundness.
Aggregated quality score from linter diagnostics, weighted by severity.
Percentage of `$ref` references that resolve successfully.
Checks whether the API description parses successfully and conforms to its declared specification (e.g., OpenAPI).
Structural correctness score based on schema issues using logarithmic dampening.
Clarity, completeness, and ingestion readiness for developers and tooling.
How richly the API is illustrated with examples.
Percentage of examples that conform to their schemas.
Percentage of operations with complete response definitions (success, client error, server error).
Health of API ingestion, bundling, and resolution within Jentic pipelines.
Semantic breadth, depth, and agent comprehension for AI systems.
Coverage of descriptions across API elements.
Coverage of RFC 9457 Problem Details for error responses.
Coverage, uniqueness, and casing consistency of operationIds for AI inference.
Coverage of summaries across operations/tags/info.
Functional utility, complexity comfort, and AI orchestration readiness.
Agent comfort level based on API operational and structural complexity.
Trust, risk posture, and security compliance.
Average quality of security schemes based on authentication method strength (weakest link for OAuth2).
Findability, semantic richness, and reasoning readiness.
Clarity and depth of descriptions across API elements.
Score it yourself
Every API in the directory is allowlisted, so you can re-score it with no key required.
npx @jentic/api-scorecard-cli score <openapi-url>