Know of an official OpenAPI document? Contribute it →
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Bindstack RAG Query 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%2Fbindstack.ai%2Fbindstack" | 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%2Fbindstack.ai%2Fbindstack" | 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 Bindstack RAG Query API.
Run a retrieval-augmented query against a meeting's transcript
Return the most relevant transcript passages ranked by similarity score
Read the matched meeting title and total result count for a query
Patterns agents use Bindstack RAG Query API for, with concrete tasks.
★ AI agent transcript retrieval
An AI agent answering questions about past meetings can pull grounded context on demand. Through Jentic the agent searches by intent and calls the query endpoint, receiving ranked transcript passages with similarity scores it can cite rather than guessing from memory.
Use Jentic to search 'query a meeting transcript', call POST /v1/external/rag/query with meeting_code 'MTG-TUR7-WGK4' and query 'what did they decide about VS Code', and return the top results.
Meeting knowledge retrieval
A knowledge assistant surfaces what was said in a specific meeting without replaying the recording. The agent sends a query scoped to one meeting_code and reads the total_results count and the ranked results array to build a summary.
Call POST /v1/external/rag/query with a meeting_code and a natural-language query, then read total_results and the ranked results array.
Grounded answer assembly
When an agent must cite sources, it retrieves passages with their similarity scores and composes an answer anchored to the transcript. This keeps generated answers traceable to the meeting content that supports them.
Send a query for a meeting_code via POST /v1/external/rag/query and use the returned passages and similarity scores to compose a cited answer.
1 endpoints — the bindstack rag query api runs retrieval-augmented queries against a meeting's transcript.
METHOD
PATH
DESCRIPTION
/v1/external/rag/query
Run a retrieval-augmented query against a meeting transcript
/v1/external/rag/query
Run a retrieval-augmented query against a meeting transcript
What agents get from Jentic-routed access to this vendor.
Setup
The Bindstack RAG query endpoint declares no credential in its spec, so there is nothing to authenticate by hand. Through Jentic you install once, import Bindstack from the API Directory, and your agent calls the query endpoint with a meeting_code and query.
Permission scoping
Bindstack carries the meeting_code in the request body, so a rule bounds which operations your agent may call rather than which meeting. With one query operation on the surface, you allow that single read operation and nothing else.
Credential isolation
This endpoint requires no credential in its OpenAPI spec, so there is nothing to hold. If Bindstack later adds authentication, your own Jentic One instance keeps the secret encrypted and injects it at execution time, never in the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'search a meeting transcript', and Jentic returns the Bindstack query operation with its input schema so the agent calls it with the right meeting_code and query.
Alternatives and complements available in the Jentic catalogue.
Specific to using Bindstack RAG Query API through Jentic.
Is there a Bindstack MCP server?
You don't need an MCP server to give your agent Bindstack. Jentic connects it directly from the API Directory: import it and your agent calls the retrieval-augmented query operation. That keeps your agent's context free of an extra server's tool definitions.
What authentication does the Bindstack RAG Query API use?
The query endpoint does not declare any authentication in its OpenAPI spec. If your deployment requires a key, Jentic keeps it encrypted in your own instance and injects it at call time, so it never reaches the agent's context.
Can I search a meeting transcript with the Bindstack RAG Query API?
Yes. POST /v1/external/rag/query takes a meeting_code and a query and returns the ranked results array with each passage's similarity score, plus the meeting_title and total_results for the match.
How do I query a meeting transcript through Jentic?
Search Jentic for 'query a meeting transcript', load the input schema, and execute POST /v1/external/rag/query with a meeting_code and query. To run it on your own infrastructure, install Jentic One from its GitHub repo.
Can I limit what my agent is allowed to do with the Bindstack RAG Query API?
Yes. Bindstack carries the meeting_code in the request body, so a rule bounds which operations your agent may call rather than which meeting. With a single query operation, you allow that one read operation and nothing else, and every call it makes is logged.
GET STARTED
For Agents
Run a retrieval-augmented query against a Bindstack meeting transcript and get back the most relevant passages ranked by similarity with the meeting title and result count.
Use for: Search a meeting transcript for a specific question, Find where a topic was discussed in a recorded meeting, Retrieve the most relevant passages for a query, Get the number of relevant results for a question
Not supported: Does not create meetings, record audio, or transcribe calls. Use for querying existing Bindstack meeting transcripts only.
The Bindstack RAG Query API runs retrieval-augmented queries against a meeting's transcript. Given a meeting_code and a natural-language query, it returns the most relevant transcript passages ranked by similarity, along with the matched meeting title and a total result count. It is a read-only retrieval surface for pulling grounded context out of recorded meetings.
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>