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

# Get burn rate



## OpenAPI

````yaml /api-reference/openapi.json get /v1/billing/burn_rate
openapi: 3.1.0
info:
  title: Veri API
  description: >-
    REST API for the Veri RL post-training platform. All requests require a
    Bearer API key (`vk_` prefix).
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://api.veri.studio
    description: Production
security: []
tags:
  - name: Training jobs
    description: Create, monitor, and manage training jobs.
  - name: Datasets
    description: Upload and connect training datasets.
  - name: Reward functions
    description: Upload and manage reward functions.
  - name: Deployments
    description: Serve trained models and run inference.
  - name: Evaluations
    description: Score models against datasets and benchmarks.
  - name: Volumes
    description: Persistent file storage mounted into jobs.
  - name: Models
    description: Custom model registry deployments serve from.
  - name: Regions
    description: Discover available launch regions.
  - name: GPU
    description: Live GPU availability by provider and region.
  - name: Code artifacts
    description: Upload custom training script bundles.
  - name: Billing
    description: Credit balance and transaction history.
  - name: API keys
    description: Create and revoke API keys.
  - name: Account
    description: The authenticated caller's identity.
  - name: SSH keys
    description: Manage SSH key pairs for compute access.
  - name: Settings
    description: Account-level integrations (Weights & Biases).
paths:
  /v1/billing/burn_rate:
    get:
      tags:
        - Billing
      summary: Get burn rate
      operationId: burn_rate
      responses:
        '200':
          description: Current spend rate, balance, and active jobs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BurnRateResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    BurnRateResponse:
      type: object
      required:
        - balance_usd
        - burn_rate_usd_per_hour
        - active_jobs
        - active_deployments
      properties:
        balance_usd:
          type: number
          format: double
        burn_rate_usd_per_hour:
          type: number
          format: double
        hours_remaining:
          type:
            - number
            - 'null'
          format: double
        active_jobs:
          type: array
          items:
            $ref: '#/components/schemas/ActiveJobEntry'
        active_deployments:
          type: array
          items:
            $ref: '#/components/schemas/ActiveDeploymentEntry'
    ActiveJobEntry:
      type: object
      required:
        - job_id
        - gpu_count
        - burn_rate_usd_per_hour
        - elapsed_seconds
        - accrued_cost_usd
      properties:
        job_id:
          type: string
        gpu_type:
          type:
            - string
            - 'null'
        gpu_count:
          type: integer
          format: int32
        provider:
          type:
            - string
            - 'null'
        burn_rate_usd_per_hour:
          type: number
          format: double
        elapsed_seconds:
          type: integer
          format: int64
        accrued_cost_usd:
          type: number
          format: double
    ActiveDeploymentEntry:
      type: object
      required:
        - deployment_id
        - name
        - gpu_count
        - burn_rate_usd_per_hour
        - elapsed_seconds
        - accrued_cost_usd
      properties:
        deployment_id:
          type: string
        name:
          type: string
        gpu_type:
          type:
            - string
            - 'null'
        gpu_count:
          type: integer
          format: int32
        provider:
          type:
            - string
            - 'null'
        burn_rate_usd_per_hour:
          type: number
          format: double
        elapsed_seconds:
          type: integer
          format: int64
        accrued_cost_usd:
          type: number
          format: double
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: API key with the `vk_` prefix. Create one from the dashboard.

````