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

# Account status — wallet, concurrency, rate limits

> Single endpoint for balance and parallel-run capacity. Authenticate with the same API key used for inference (`Authorization: Key …` or `Bearer …`).



## OpenAPI

````yaml /openapi.json get /v1/account
openapi: 3.0.0
info:
  title: apisale Public API
  version: 0.1.0
  description: >-
    Generative media inference, account monitoring, and SDK-compatible routes
    for apisale.ai. Authenticate with `Authorization: Key YOUR_API_KEY`.
servers:
  - url: https://api.apisale.ai
security: []
paths:
  /v1/account:
    get:
      tags:
        - Public Account
      summary: Account status — wallet, concurrency, rate limits
      description: >-
        Single endpoint for balance and parallel-run capacity. Authenticate with
        the same API key used for inference (`Authorization: Key …` or `Bearer
        …`).
      operationId: AccountController_getAccount
      parameters: []
      responses:
        '200':
          description: Account wallet, concurrency, identity
          content:
            application/json:
              schema:
                type: object
                required:
                  - organization_id
                  - api_key_id
                  - environment
                  - identity
                  - wallet
                  - concurrency
                  - rate_limit
                properties:
                  organization_id:
                    type: string
                  api_key_id:
                    type: string
                  environment:
                    type: string
                    enum:
                      - live
                      - test
                  identity:
                    type: object
                  wallet:
                    type: object
                    properties:
                      balance_usd:
                        type: string
                      reserved_usd:
                        type: string
                      available_usd:
                        type: string
                      total_spent_usd:
                        type: string
                      currency:
                        type: string
                  concurrency:
                    type: object
                    properties:
                      tier:
                        type: string
                      limit:
                        type: number
                      in_flight:
                        type: number
                      available:
                        type: number
                  api_key_concurrency:
                    type: object
                    nullable: true
                  rate_limit:
                    type: object
                    properties:
                      per_minute:
                        type: number
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'API key: `Key sk-xxx` or `Bearer sk-xxx`'

````