Index any API documentation and ask questions in plain English. Get the exact endpoint, parameter, and code example — in one query.
START FOR FREE →Every GET, POST, PUT, DELETE with parameters and response shapes
API keys, OAuth flows, bearer tokens — how to authenticate
Fields, types, required vs optional, nested objects
Real curl commands, SDK snippets, and integration examples
Point at any REST, GraphQL, or SDK reference page. We handle pagination and multi-page references.
All endpoints, parameters, examples, and descriptions are extracted and embedded semantically.
"How do I upload a file to S3?" returns the exact endpoint, auth, and code sample — not a wall of docs.
Integrate the search into your IDE, Raycast, or Slack. Get API answers wherever you work.
One call to extract, one call to search. Integrate into your dev workflow, MCP server, or personal assistant — get API knowledge wherever you need it.
import KnowledgeSDK from "@knowledgesdk/node";
const sdk = new KnowledgeSDK({ apiKey: "knowledgesdk_live_..." });
// Index Stripe API docs
await sdk.extract({
url: "https://stripe.com/docs/api" ,
store: true ,
});
// Ask a question
const result = await sdk.search({
query: "how to create a payment intent" ,
});
// → endpoint, params, and code example