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

# Get Account Billing

> Get authenticated account information including credit balance and account details.



## OpenAPI

````yaml /cloud/openapi/v3.json get /billing/account
openapi: 3.1.0
info:
  title: Browser Use Public API v3
  summary: Browser Use session-based agent API (v3)
  version: 3.0.0
servers:
  - url: https://api.browser-use.com/api/v3
    description: Production server
security: []
paths:
  /billing/account:
    get:
      tags:
        - Billing
      summary: Get Account Billing
      description: >-
        Get authenticated account information including credit balance and
        account details.
      operationId: get_account_billing_billing_account_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountView'
        '404':
          description: Project for a given API key not found!
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountNotFoundError'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    AccountView:
      properties:
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
          description: The name of the user
        totalCreditsBalanceUsd:
          type: number
          title: Credits Balance USD
          description: The total credits balance in USD
        monthlyCreditsBalanceUsd:
          type: number
          title: Monthly Credits Balance USD
          description: Monthly subscription credits balance in USD
        additionalCreditsBalanceUsd:
          type: number
          title: Additional Credits Balance USD
          description: Additional top-up credits balance in USD
        rateLimit:
          type: integer
          title: Rate Limit
          description: The rate limit for the account
        planInfo:
          $ref: '#/components/schemas/PlanInfo'
          title: Plan Info
          description: The plan information
        isFreeTier:
          type: boolean
          title: Is Free Tier
          description: Whether the account is on the free tier
          default: false
        projectId:
          type: string
          format: uuid
          title: Project ID
          description: The ID of the project
      type: object
      required:
        - totalCreditsBalanceUsd
        - monthlyCreditsBalanceUsd
        - additionalCreditsBalanceUsd
        - rateLimit
        - planInfo
        - projectId
      title: AccountView
      description: View model for account information.
    AccountNotFoundError:
      properties:
        detail:
          type: string
          title: Detail
          default: Account not found
      type: object
      title: AccountNotFoundError
      description: Error response when an account is not found
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PlanInfo:
      properties:
        planName:
          type: string
          title: Plan Name
          description: The name of the plan
        subscriptionStatus:
          anyOf:
            - type: string
            - type: 'null'
          title: Subscription Status
          description: The status of the subscription
        subscriptionId:
          anyOf:
            - type: string
            - type: 'null'
          title: Subscription ID
          description: The ID of the subscription
        subscriptionCurrentPeriodEnd:
          anyOf:
            - type: string
            - type: 'null'
          title: Subscription Current Period End
          description: The end of the current period
        subscriptionCanceledAt:
          anyOf:
            - type: string
            - type: 'null'
          title: Subscription Canceled At
          description: The date the subscription was canceled
      type: object
      required:
        - planName
        - subscriptionStatus
        - subscriptionId
        - subscriptionCurrentPeriodEnd
        - subscriptionCanceledAt
      title: PlanInfo
      description: View model for plan information
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-Browser-Use-API-Key

````