API Explorer
The API Explorer renders OpenAPI specifications as interactive API documentation. When you configure it in your content set, docs-builder automatically generates pages for each API operation, request and response schemas, shared type definitions, and inline examples.
This feature is still under development and the functionality described on this page might change.
Add the api key to your docset.yml file to enable the API Explorer. The key maps product names to OpenAPI JSON specification files.
Paths are relative to the folder that contains docset.yml.
api:
elasticsearch: elasticsearch-openapi.json
kibana: kibana-openapi.json
Each product key produces its own section of API documentation. For example, elasticsearch generates pages under /api/elasticsearch/ and kibana generates pages under /api/kibana/.
The api key is only valid in docset.yml. You can't use it in toc.yml files.
You can add custom Markdown content before and after the auto-generated API documentation using a sequence format:
api:
kibana:
- file: kibana-intro.md
- spec: kibana-openapi.json
- file: kibana-additional-notes.md
This configuration creates a navigation structure where:
- Intro pages (before the first
spec) appear at the top of the sidebar - Generated API content (operations, tags, types) appears in the middle
- Outro pages (after the spec) appear at the bottom
- Full Myst support: Intro/outro pages support the full range of Myst Markdown features including cross-links, substitutions, and directives
- Automatic exclusion: No need to add intro/outro files to the
exclude:list - they're automatically excluded from normal HTML generation - URL collision detection: Build fails if intro/outro page names conflict with reserved API Explorer segments (
types/,tags/) or operation names
You can include multiple intro and outro pages:
api:
kibana:
- file: introduction.md
- file: getting-started.md
- spec: kibana-openapi.json
- file: examples.md
- file: troubleshooting.md
Here's a sample intro page (kibana-intro.md):
# Kibana APIs
Welcome to the Kibana API documentation. These APIs allow you to manage Kibana programmatically.
## Before you begin
Make sure you have:
- A running Kibana instance
- Valid authentication credentials
- Understanding of RESTful API principles
Intro and outro Markdown files must not use a slug that would collide with the reserved API Explorer segments like types and tags.
OpenAPI specification files must be in JSON format and located in the same folder as your docset.yml (or in a subfolder of it). The path you specify in api is resolved relative to the docset.yml location.
For example, if your content set is structured like this:
docs/
docset.yml
elasticsearch-openapi.json
kibana-openapi.json
index.md
...
Your docset.yml references the specs as follows:
api:
elasticsearch: elasticsearch-openapi.json
kibana: kibana-openapi.json
The API Explorer generates documentation in two scenarios:
docs-builder build: API docs are generated as part of the standard build. Use--skip-apito skip generation for faster iteration on content.docs-builder serve: API docs are generated on startup and regenerated automatically when spec files change.
API generation is skipped when running docs-builder serve --watch. This is a performance optimization for dotnet watch workflows. Run serve without --watch to include API docs in your local preview.
You can reference API pages in your toc.yml or docset.yml navigation using cross-link syntax:
toc:
- file: index.md
- title: Elasticsearch API Reference
crosslink: elasticsearch://api/elasticsearch/
The API Explorer generates the following types of pages from your OpenAPI spec:
- Landing page: An overview of the API grouped by tag
- Tag landing pages: One page per tag that lists operations in that tag, with the tag's display name, optional OpenAPI
description(CommonMark), and optionalexternalDocslink - Operation pages: One page per API operation, with the HTTP method, path, parameters, request body, response schemas, and examples
- Schema type pages: Dedicated pages for complex shared types such as
QueryContainerandAggregationContainer
The API Explorer supports some OpenAPI specification extensions to enhance navigation and display:
For background on OpenAPI vendor extensions, refer to OpenAPI Specification.
When an OpenAPI operation includes the x-codeSamples extension, the API Explorer renders the code samples with a language selector tab. This lets users switch between available languages such as Console, cURL, Python, JavaScript, Ruby, PHP, and Java.
The x-codeSamples extension is a JSON array of objects, each with a lang and source field:
"x-codeSamples": [
{ "lang": "Console", "source": "GET /_search" },
{ "lang": "curl", "source": "curl -X GET ..." },
{ "lang": "Python", "source": "resp = client.search()" }
]
The code samples appear in a standalone "Code Examples" section on every operation page that has the extension, regardless of HTTP method. This means GET, DELETE, and other operations without a request body also display language tabs when x-codeSamples are present. When multiple languages are available, they appear as tabs. The selected language persists across operations and page navigations. When only one language is available, the example renders without a tab selector.
Console is treated as the default language and appears first in the tab order when present.
Add the operation-level x-req-auth extension to list authentication or privilege requirements that users must satisfy before calling the API.
The API Explorer renders these lines in a Prerequisites section on the operation page.
x-req-auth is a JSON array of strings.
Each non-empty string becomes one item in the prerequisites list (leading and trailing whitespace is trimmed).
{
"get": {
"operationId": "get-snapshot",
"responses": { "200": { "description": "ok" } },
"x-req-auth": [
"Cluster privilege: `cluster:admin/snapshot`"
]
}
}
When prerequisites are present, Prerequisites also appears in the on-page table of contents (after Paths). When the extension is missing, empty, or not a JSON array, the section is omitted. Malformed values are skipped and the build may log a warning.
Use the x-displayName extension (from Redocly) on tag objects to provide user-friendly display names in navigation and landing pages while maintaining stable URLs based on the canonical tag name.
{
"tags": [
{
"name": "tasks",
"description": "The task management APIs enable you to get information about tasks currently running.",
"x-displayName": "Task management"
},
{
"name": "ml_anomaly",
"description": "Machine learning anomaly detection APIs.",
"x-displayName": "Machine Learning Anomaly Detection"
}
]
}
Behavior:
- When
x-displayNameis present, it's used for navigation titles, tag landing page titles, and section headings on the main API overview - When
x-displayNameis absent, the canonical tagnameis used as a fallback - Tag landing page URLs and tag URL segments are derived from the canonical tag
name
If two different canonical tag names normalize to the same tag landing page URL, the build fails with an error that names both tags and the colliding segment so the spec can be fixed.
Use the document-level x-tagGroups extension (from Redocly) to define how tags are grouped in the API Explorer sidebar. Each group has a display name and a list of tag name values that belong to it. Group order in the array is the order of top-level sections in the navigation.
{
"openapi": "3.0.3",
"info": { "title": "Example", "version": "1.0.0" },
"paths": {},
"x-tagGroups": [
{
"name": "Search & Document APIs",
"tags": ["search", "document", "eql", "esql", "sql"]
},
{
"name": "Cluster Management",
"tags": ["indices", "cluster", "snapshot"]
}
]
}
Behavior:
- When
x-tagGroupsis present and valid, the API Explorer uses it as an additional level of grouping in the sidebar. - In the navigation tree, a group's section title links to the main API overview for that product (it is not a separate page and does not point at the first tag in the group; tag landings stay under
.../tags/...only for tags). - When
x-tagGroupsis absent, tags are listed directly under the API root in a single flat layer. - Any operation tag that is not listed under any group is still included: it appears under a fallback section named
unknown, and the build logs a warning so you can fix the spec.