A structured, LLM-optimized knowledge base for the Openapi API marketplace.
Drop the contents of knowledge/ into any LLM context to ground it with authoritative,
up-to-date information about Openapi's company profile, platform architecture, API catalog, service
endpoints, and frequently asked questions.
This repository is designed to be consumed directly by an LLM agent or tool. Choose one of the following approaches, depending on your workflow:
-
Chat-based LLMs (Claude, ChatGPT, Gemini, etc.) Copy and paste the entire contents of the
knowledge/folder into a new chat or project. This gives the model a comprehensive understanding of every Openapi service, endpoint, authentication model, billing mechanism, and platform convention. -
Agent frameworks (OpenAI Assistants, LangChain, LlamaIndex, etc.) Point your agent's vector store or file search tool at this repository. The markdown files in
knowledge/are already structured for retrieval: each service has a compact endpoint table and each OAS spec is available as raw JSON for tool-based API generation. -
MCP server / custom tool Clone this repo and expose it through an MCP resource or a custom file-read tool so the LLM can selectively load the files it needs at runtime.
-
Openai-compatible providers with file upload Upload the entire
knowledge/tree as a project or knowledge base attachment.
You can also browse the files manually to look up specific services, endpoints, or platform
information without an LLM. Start with knowledge/README.md which acts as
an index.
When the LLM needs information about one specific service, load only the relevant files:
knowledge/oas/<service>.openapi.json โ the raw OpenAPI 3 specification
knowledge/services/<service>.md โ human-readable endpoint summary
Always pair with knowledge/platform-guide.md for cross-cutting
concerns (auth, billing, async patterns) and knowledge/faq.md for
troubleshooting.
openapi-llm-wiki/
โโโ knowledge/
โ โโโ README.md โ index of the knowledge base
โ โโโ company-profile.md โ who Openapi is, history, certifications, data sources
โ โโโ services-catalog.md โ catalog of all 28 APIs with base URLs and categories
โ โโโ platform-guide.md โ authentication, scopes, billing, sandbox, async patterns
โ โโโ faq.md โ console FAQ (account, API usage, payments)
โ โโโ references.md โ official websites, GitHub repos, SDKs, Postman, status page
โ โโโ services/ โ per-service endpoint references (generated from OAS specs)
โ โ โโโ company.md
โ โ โโโ risk.md
โ โ โโโ smsv2.md
โ โ โโโ ... (28 service files)
โ โโโ oas/ โ snapshot of official OpenAPI 3 specifications
โ โโโ 00-list.txt โ canonical URLs for all specs
โ โโโ company.openapi.json
โ โโโ risk.openapi.json
โ โโโ ... (29 OAS files)
โโโ LICENSE
โโโ README.md โ this file
With this knowledge base loaded, the LLM can accurately answer questions such as:
- "How do I authenticate to the Openapi platform?"
- "What is the base URL for the Company API and what endpoints does it expose?"
- "Which service should I use for Italian digital signatures?"
- "How does the async request pattern work for document retrieval?"
- "What are the differences between wallet-based and subscription billing?"
- "How do I create a token via the OAuth v2 API?"
- "Is the old OAuth v1 still supported?"
- "What data sources does Openapi rely on for company information?"
- "Generate me the curl command for looking up a German company."
The canonical source of truth for OpenAPI specifications is:
https://console.openapi.com/oas/en/<service>.openapi.json
The full list of spec URLs is in knowledge/oas/00-list.txt.
To refresh this knowledge base:
- Re-download each spec from its canonical URL into
knowledge/oas/. - Regenerate the endpoint summaries in
knowledge/services/from the updated specs. - Review
knowledge/services-catalog.mdandknowledge/platform-guide.mdfor any platform-level changes.
The API Library in the Openapi console is the authoritative source for which APIs are active, deprecated, or newly introduced.
MIT โ see LICENSE.