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

# Current plan and limits

> Reports the caller's plan. Anonymous without a session cookie.



## OpenAPI

````yaml /api-reference/openapi.json get /entitlements
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:
  /entitlements:
    get:
      summary: Current plan and limits
      description: Reports the caller's plan. Anonymous without a session cookie.
      operationId: entitlements
      responses:
        '200':
          description: Limits.
          content:
            application/json:
              schema:
                type: object
                properties:
                  plan:
                    type: string
                    enum:
                      - anonymous
                      - free
                      - pro
                  label:
                    type: string
                  checks_per_hour:
                    oneOf:
                      - type: integer
                      - type: string
                  saved_urls:
                    oneOf:
                      - type: integer
                      - type: string
                    description: '''unlimited'' as a string, because Infinity is not JSON.'
                  projects:
                    oneOf:
                      - type: integer
                      - type: string
                  api:
                    type: boolean

````