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

# Current rates and limits

> The rates and limits every request is held to, live.

Billing is per token. Two models do the work — ``sdvm-audit-1`` produces every verdict,
``sdvm-fix-1`` every fix — and each token bills at the rate of the model that consumed it.
Rates are USD per million tokens. Minimum one cent per request, rounded up to the whole cent;
every response reports ``cost_usd``. Rates can change, so read them here rather than
hard-coding.



## OpenAPI

````yaml https://api.sdvm.ai/openapi.json get /pricing
openapi: 3.1.0
info:
  title: SDVM API
  description: >-
    Two models for training data: sdvm-audit-1 rates every sample, one verdict
    per check; sdvm-fix-1 repairs it and never leaves it worse.
  version: 1.0.0
servers:
  - url: https://api.sdvm.ai
security: []
paths:
  /pricing:
    get:
      tags:
        - Pricing
      summary: Current rates and limits
      description: >-
        The rates and limits every request is held to, live.


        Billing is per token. Two models do the work — ``sdvm-audit-1`` produces
        every verdict,

        ``sdvm-fix-1`` every fix — and each token bills at the rate of the model
        that consumed it.

        Rates are USD per million tokens. Minimum one cent per request, rounded
        up to the whole cent;

        every response reports ``cost_usd``. Rates can change, so read them here
        rather than

        hard-coding.
      operationId: get_pricing_pricing_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Get Pricing Pricing Get

````