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

# Check Your Credits

> Use the endpoint below to view your current credit balance in the Pollo AI API. Need more credits? Head over to your API billing page at https://pollo.ai/api-platform/billing to add them easily.



## OpenAPI

````yaml GET /credit/balance
openapi: 3.0.3
info:
  title: Pollo | AI Video Collection
  description: ✨RESTful API Document
  version: 1.0.0
servers:
  - url: https://pollo.ai/api/platform
security: []
externalDocs:
  url: https://pollo.ai/api/platform/api/openapi.json
paths:
  /credit/balance:
    get:
      tags:
        - credit
      summary: get credit balance
      operationId: credit-getCreditBalance
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  availableCredits:
                    type: number
                  totalCredits:
                    type: number
                required:
                  - availableCredits
                  - totalCredits
                additionalProperties: false
        default:
          $ref: '#/components/responses/error'
components:
  responses:
    error:
      description: Error response
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              code:
                type: string
              issues:
                type: array
                items:
                  type: object
                  properties:
                    message:
                      type: string
                  required:
                    - message
                  additionalProperties: false
            required:
              - message
              - code
            additionalProperties: false

````