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

# Credit packs and prices

> Public, unauthenticated. Serves packs.py (Rate Card v5) verbatim so the
dashboard renders prices from the one source of truth and never hardcodes
them; the checkout above and the webhook credit off the same table.



## OpenAPI

````yaml https://api.classify.ai/openapi.json get /v1/packs
openapi: 3.1.0
info:
  title: Classify API
  description: >-
    URL-level classification against the ContentGraph index. Priced per URL,
    never per token. URLs already in ContentGraph return classifications inline
    in under 50ms (Lookup). URLs not in the index return status `unknown` with a
    `job_id`; workers fetch, embed, and classify within seconds (Live Classify).
    Poll the job for results. Every live result joins the index.
  version: '1.0'
servers:
  - url: https://api.classify.ai
security: []
paths:
  /v1/packs:
    get:
      tags:
        - Billing
      summary: Credit packs and prices
      description: >-
        Public, unauthenticated. Serves packs.py (Rate Card v5) verbatim so the

        dashboard renders prices from the one source of truth and never
        hardcodes

        them; the checkout above and the webhook credit off the same table.
      operationId: list_packs_v1_packs_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````