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

# Get Billing Status

> Returns current balance, payment method status, and auto top-up settings.



## OpenAPI

````yaml GET /billing
openapi: 3.1.0
info:
  title: Yappr API
  description: >
    Create and manage AI voice agents, purchase phone numbers, configure tools,
    and initiate calls — all via REST.
  version: 1.0.0
  contact:
    url: https://goyappr.com
servers:
  - url: https://api.goyappr.com
    description: Production
security:
  - apiKey: []
paths:
  /billing:
    get:
      tags:
        - Billing
      summary: Get billing status
      description: >-
        Returns current balance, payment method status, and auto top-up
        settings.
      operationId: getBilling
      responses:
        '200':
          description: Billing status
          content:
            application/json:
              schema:
                type: object
                properties:
                  has_payment_method:
                    type: boolean
                  billing_email:
                    type: string
                    format: email
                    nullable: true
                  balance_cents:
                    type: integer
                  balance:
                    type: number
                    description: balance_cents / 100
                  currency:
                    type: string
                    example: usd
                  is_suspended:
                    type: boolean
                  auto_topup_enabled:
                    type: boolean
                  auto_topup_amount_cents:
                    type: integer
                    nullable: true
                  low_balance_threshold_cents:
                    type: integer
                    nullable: true
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Your Yappr API key (e.g. `ypr_live_...`). Generate one in the dashboard
        under **Settings → API Keys**.

````