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

# Get Balance



## OpenAPI

````yaml GET /balance
openapi: 3.1.0
info:
  title: Mindcase API
  version: 1.0.0
  description: >-
    The Mindcase API provides programmatic access to 30+ data scraping and
    enrichment agents. Collect structured data from Instagram, LinkedIn,
    YouTube, Google Maps, and more.
servers:
  - url: https://api.mindcase.co/api/v1
security:
  - bearerAuth: []
tags:
  - name: Agents
    description: Browse and run data agents
  - name: Jobs
    description: Track and manage agent jobs
  - name: Balance
    description: Check remaining USD balance
paths:
  /balance:
    get:
      tags:
        - Balance
      summary: Get balance
      operationId: getBalance
      responses:
        '200':
          description: Remaining USD balance
          content:
            application/json:
              schema:
                type: object
                required:
                  - usd_remaining
                properties:
                  usd_remaining:
                    type: number
                    example: 8.5
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: unauthorized
            message: >-
              Invalid or missing API key. Include your key in the Authorization
              header as 'Bearer mk_live_...'.
  schemas:
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: string
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key in the format `mk_live_...`

````