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

> Current credit balance for the account behind the bearer key. Key-authenticated, unmetered, and never cached. Returns credits_remaining, the same field and X-Credits-Remaining header the metered endpoints already carry.



## OpenAPI

````yaml https://api.classify.ai/openapi.json get /v1/balance
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/balance:
    get:
      tags:
        - Account
      summary: Credit balance
      description: >-
        Current credit balance for the account behind the bearer key.
        Key-authenticated, unmetered, and never cached. Returns
        credits_remaining, the same field and X-Credits-Remaining header the
        metered endpoints already carry.
      operationId: balance_v1_balance_get
      responses:
        '200':
          description: Current balance
          content:
            application/json:
              schema: {}
              example:
                credits_remaining: 24984
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      description: Classify API key (ck_...)

````