> ## 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.

# Per-API-key concurrency breakdown

> Concurrency usage for every active key in the organization.



## OpenAPI

````yaml /openapi.json get /v1/account/keys
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/keys:
    get:
      tags:
        - Public Account
      summary: Per-API-key concurrency breakdown
      description: Concurrency usage for every active key in the organization.
      operationId: AccountController_getApiKeyBreakdown
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicAccountKeysResponseDto'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    PublicAccountKeysResponseDto:
      type: object
      properties:
        api_keys:
          type: array
          items:
            $ref: '#/components/schemas/PublicApiKeyUsageRowDto'
      required:
        - api_keys
    PublicApiKeyUsageRowDto:
      type: object
      properties:
        apiKeyId:
          type: string
        name:
          type: string
        keyPrefix:
          type: string
        inFlight:
          type: number
        share:
          type: number
          example: 0.25
      required:
        - apiKeyId
        - name
        - keyPrefix
        - inFlight
        - share
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'API key: `Key sk-xxx` or `Bearer sk-xxx`'

````