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

# Get Account Info

> Get account metadata and current rate limit usage.



## OpenAPI

````yaml https://api.beeble.ai/developer-api-docs/openapi.json get /v1/account/info
openapi: 3.1.0
info:
  title: Beeble Developer API
  description: API for SwitchX video-to-video compositing and media uploads.
  version: 1.0.0
servers:
  - url: https://api.beeble.ai
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/account/info:
    get:
      tags:
        - account
      summary: Get Account Info
      description: Get account metadata and current rate limit usage.
      operationId: get_account_info_v1_account_info_get
      parameters: []
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountInfoResponse'
components:
  schemas:
    AccountInfoResponse:
      properties:
        email:
          type: string
          title: Email
          description: Account email address
        billing_type:
          type: string
          title: Billing Type
          description: '''prepaid'' or ''postpaid'''
          default: prepaid
        spending_limit:
          anyOf:
            - type: integer
            - type: 'null'
          title: Spending Limit
          description: Spending limit per billing period in dollars
          examples:
            - 5000
        rate_limits:
          $ref: '#/components/schemas/AccountRateLimits'
          description: Rate limits and current usage
      type: object
      required:
        - email
      title: AccountInfoResponse
      description: >-
        Account metadata including billing type, spending limits, and real-time
        rate limit usage.
    AccountRateLimits:
      properties:
        rpm:
          $ref: '#/components/schemas/RateLimitInfo'
          description: Requests per minute
        concurrency:
          $ref: '#/components/schemas/RateLimitInfo'
          description: Concurrent requests
      type: object
      title: AccountRateLimits
      description: Current rate limits and real-time usage counters.
    RateLimitInfo:
      properties:
        usage:
          type: integer
          title: Usage
          description: Current usage in this window
          default: 0
          examples:
            - 12
        limit:
          anyOf:
            - type: integer
            - type: 'null'
          title: Limit
          description: Maximum allowed (null = default/unlimited)
          examples:
            - 100
      type: object
      title: RateLimitInfo
      description: Rate limit for a single dimension (e.g. rpm, concurrency).
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your [Developer API key](/api/authentication).

````