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

# GET /api/pricing — published pricing catalog

> Return the published per-model and per-GPU rate catalog. Currency is scoped to the site: USD on the international site, CNY on the China site.

Return the published per-model and per-GPU rate catalog for the current site. Rates are in the site currency (USD on `.com`, CNY on `.cn`). Public endpoint; no authentication required.

**Method:** `GET` **Path:** `/api/pricing` **Auth:** None

## Response

<ResponseField name="models" type="object[]">
  <Expandable title="model">
    <ResponseField name="id" type="string">
      Row identifier.
    </ResponseField>

    <ResponseField name="slug" type="string">
      Model slug.
    </ResponseField>

    <ResponseField name="unit" type="string">
      Pricing unit (for example `per_million_tokens`).
    </ResponseField>

    <ResponseField name="price" type="number">
      Rate in `currency`.
    </ResponseField>

    <ResponseField name="currency" type="string">
      `USD` or `CNY`.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="gpus" type="object[]">
  <Expandable title="gpu">
    <ResponseField name="id" type="string">
      Row identifier.
    </ResponseField>

    <ResponseField name="name" type="string">
      GPU identifier (for example `nvidia-t4`).
    </ResponseField>

    <ResponseField name="hourly_price" type="number">
      Rate per hour.
    </ResponseField>

    <ResponseField name="currency" type="string">
      `USD` or `CNY`.
    </ResponseField>
  </Expandable>
</ResponseField>

## Example

```bash theme={null}
curl https://ariacompute.com/api/pricing
```

```json theme={null}
{
  "models": [
    { "id": "pm_1", "slug": "gemma-4-e2b-it_q4", "unit": "per_million_tokens", "price": 0.0012, "currency": "USD" }
  ],
  "gpus": [
    { "id": "pg_1", "name": "nvidia-t4", "hourly_price": 0.75, "currency": "USD" }
  ]
}
```

<Note>
  Admins manage the catalog through `PUT /api/admin/billing/pricing/models` and `PUT /api/admin/billing/pricing/gpus`. Those endpoints require an admin role and are outside the scope of this reference.
</Note>


## Related topics

- [Model and GPU pricing across sites](/resources/pricing.md)
- [Prepaid wallet, top-ups, and usage billing](/concepts/wallet-billing.md)
- [Aria Compute REST API reference](/api-reference/introduction.md)
- [GET /api/models — list available Aria model bundles](/api-reference/models/list.md)
- [GET /api/download/router-latest — latest aria-router release](/api-reference/downloads/router-latest.md)
