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

# Security disclosure contacts

> RFC 9116 security.txt with contact info for security researchers reporting vulnerabilities.



## OpenAPI

````yaml get /.well-known/security.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:
  /.well-known/security.txt:
    get:
      tags:
        - Discovery
      summary: Security disclosure contacts
      description: >-
        RFC 9116 security.txt with contact info for security researchers
        reporting vulnerabilities.
      operationId: getSecurityTxt
      responses:
        '200':
          description: 200 response
          content:
            text/plain:
              schema:
                type: string
      security: []

````