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

# Return account and API key quota

> Use this operation to return account and api key quota. Authenticate with Authorization: Bearer <AGENTBODY_API_KEY>.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/account/quota
openapi: 3.1.0
info:
  description: >-
    Direct authenticated APIs for public social data, people data, transcripts,
    documents, text, and SEO. Send an API key as a Bearer token. Responses never
    include provider credentials or raw provider payloads.
  license:
    name: Proprietary
    url: https://agentbody.io
  title: AgentBody API
  version: '2026-08-19'
servers:
  - url: https://api.agentbody.io
security:
  - bearerAuth: []
paths:
  /v1/account/quota:
    get:
      tags:
        - account
      summary: Return account and API key quota
      description: >-
        Use this operation to return account and api key quota. Authenticate
        with Authorization: Bearer <AGENTBODY_API_KEY>.
      operationId: get_v1_account_quota
      responses:
        '200':
          $ref: '#/components/responses/AccountQuotaSuccess'
        '401':
          content:
            application/json:
              example:
                error:
                  code: UNAUTHENTICATED
                  message: example error
              schema:
                additionalProperties: false
                properties:
                  error:
                    additionalProperties: false
                    properties:
                      code:
                        const: UNAUTHENTICATED
                        type: string
                      message:
                        type: string
                    required:
                      - code
                      - message
                    type: object
                required:
                  - error
                type: object
          description: Configure a valid API key; do not retry unchanged.
          headers:
            X-Request-Id:
              description: Gateway request identifier for support and audit.
              schema:
                format: uuid
                type: string
components:
  responses:
    AccountQuotaSuccess:
      content:
        application/json:
          example:
            available_usd: example_value
            balance_usd: example_value
            key_remaining_usd: example_value
            key_spend_limit_usd: example_value
            key_spent_usd: example_value
            reserved_usd: example_value
          schema:
            additionalProperties: false
            properties:
              available_usd:
                type: string
              balance_usd:
                type: string
              key_remaining_usd:
                type:
                  - string
                  - 'null'
              key_spend_limit_usd:
                type:
                  - string
                  - 'null'
              key_spent_usd:
                type: string
              reserved_usd:
                type: string
            required:
              - balance_usd
              - reserved_usd
              - available_usd
              - key_spent_usd
              - key_spend_limit_usd
              - key_remaining_usd
            type: object
      description: Current account and key quota.
      headers:
        X-Request-Id:
          description: Gateway request identifier for support and audit.
          schema:
            format: uuid
            type: string
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````