### Fetch Single Documentation Page (Bash) Source: https://context7_llms Demonstrates how to fetch a single documentation page in Markdown format using a cURL command. This is useful for retrieving specific API reference or example documentation. ```bash curl https://octavus.ai/api/docs/getting-started/introduction.md ``` -------------------------------- ### Fetch All Documentation (Bash) Source: https://context7_llms Shows how to retrieve all Octavus platform documentation as a single Markdown file using a cURL command. This is helpful for offline access or bulk processing of documentation. ```bash curl https://octavus.ai/api/docs/all.md ``` -------------------------------- ### Programmatic Access Endpoints Source: https://context7_llms This section details the endpoints available for programmatic access to Octavus AI documentation and related resources. ```APIDOC ## GET /llms.txt ### Description This file serves as the documentation index for LLMs. ### Method GET ### Endpoint /llms.txt ### Parameters #### Query Parameters None ### Request Example ```bash curl https://octavus.ai/llms.txt ``` ### Response #### Success Response (200) - **content** (string) - The content of the documentation index. #### Response Example ```json { "content": "...documentation index content..." } ``` ## GET /api/docs/{slug}.md ### Description Retrieves a single documentation page as a markdown file. ### Method GET ### Endpoint /api/docs/{slug}.md ### Parameters #### Path Parameters - **slug** (string) - Required - The unique identifier for the documentation page (e.g., `getting-started/introduction`). ### Request Example ```bash curl https://octavus.ai/api/docs/getting-started/introduction.md ``` ### Response #### Success Response (200) - **content** (string) - The markdown content of the requested documentation page. #### Response Example ```json { "content": "# Introduction\n...markdown content..." } ``` ## GET /api/docs/all.md ### Description Retrieves all Octavus AI documentation as a single markdown file. ### Method GET ### Endpoint /api/docs/all.md ### Parameters #### Query Parameters None ### Request Example ```bash curl https://octavus.ai/api/docs/all.md ``` ### Response #### Success Response (200) - **content** (string) - The combined markdown content of all documentation. #### Response Example ```json { "content": "# Octavus AI Documentation\n...all markdown content..." } ``` ## GET /sitemap.xml ### Description Provides an XML sitemap for web crawlers. ### Method GET ### Endpoint /sitemap.xml ### Parameters #### Query Parameters None ### Request Example ```bash curl https://octavus.ai/sitemap.xml ``` ### Response #### Success Response (200) - **content** (string) - The XML content of the sitemap. #### Response Example ```xml \n\n \n https://octavus.ai/docs/api-reference/overview\n \n ...more urls...\n ``` ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.