> ## 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.

# Robots exclusion rules

> Standard robots.txt at the site root telling crawlers which paths are allowed/disallowed and pointing at the sitemap.



## OpenAPI

````yaml get /robots.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:
  /robots.txt:
    get:
      tags:
        - Discovery
      summary: Robots exclusion rules
      description: >-
        Standard robots.txt at the site root telling crawlers which paths are
        allowed/disallowed and pointing at the sitemap.
      operationId: getRobotsTxt
      responses:
        '200':
          description: 200 response
          content:
            text/plain:
              schema:
                type: string
      security: []

````