> ## Documentation Index
> Fetch the complete documentation index at: https://developers.myhero.so/llms.txt
> Use this file to discover all available pages before exploring further.

# LLM-friendly site map

> Curated, markdown-formatted overview of the site for AI crawlers, per the llmstxt.org convention.



## OpenAPI

````yaml get /llms.txt
openapi: 3.1.0
info:
  title: HERO API
  version: current
  description: |-
    The HERO REST API.

    See https://developers.myhero.so for the rendered docs.
servers:
  - url: https://app.myhero.so
security: []
paths:
  /llms.txt:
    get:
      tags:
        - Discovery
      summary: LLM-friendly site map
      description: >-
        Curated, markdown-formatted overview of the site for AI crawlers, per
        the llmstxt.org convention.
      operationId: getLlmsTxt
      responses:
        '200':
          description: 200 response
          content:
            text/plain:
              schema:
                type: string
      security: []

````