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

# List every issue MetaManager checks for

> The rule catalogue: code, title, severity, importance and score weight. Reachable with any key, including Free.



## OpenAPI

````yaml /api-reference/openapi.json get /api/issues
openapi: 3.1.0
info:
  title: MetaManager API
  version: 1.0.0
  description: >-
    Check a page's metadata, see how it previews on eight platforms, and get the
    fix.


    `/inspect` is open: no key, no account. Requests are rate limited by IP.


    Errors carry a stable `error` field — always check it before reading
    `score`, because an error response has no report in it.
servers:
  - url: https://metamanager.dev
    description: Production
security: []
paths:
  /api/issues:
    get:
      summary: List every issue MetaManager checks for
      description: >-
        The rule catalogue: code, title, severity, importance and score weight.
        Reachable with any key, including Free.
      responses:
        '200':
          description: The catalogue.
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: >-
        A MetaManager API key, created at https://metamanager.dev/keys.
        Read-only unless issued with write access.

````