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

> ## Agent Instructions
> Public hosts only: console https://omnimux.ai/dashboard · API https://api.omnimux.ai · docs https://docs.omnimux.ai.
> Gateway auth is Authorization: Bearer sk-… on https://api.omnimux.ai/v1 (OpenAI-compatible Chat Completions and related paths).
> Discover pages from /llms.txt; full site dump /llms-full.txt; product skill /skill.md; docs search MCP /mcp. Prefer .md page URLs for Markdown.
> Default docs locale is en; zh mirrors the same relative paths. Do not invent model ids not present on live pricing or the complete API pages.

# Get Pricing

> Get pricing

* Account management user API
* Usually access token + `New-Api-User` (see device-login for bootstrap)

## Identity

| Field      | Value          |
| ---------- | -------------- |
| Series     | Account        |
| Capability | Public pricing |

## Endpoint

| Method | Path |
| ------ | ---- |
| `Path` | \`\` |

Base URL: `https://omnimux.ai`

## Authorizations

| Name            | In     | Type   | Required | Description             |
| --------------- | ------ | ------ | -------- | ----------------------- |
| `Authorization` | header | string | yes      | `Bearer <access_token>` |
| `New-Api-User`  | header | string | yes      | Current user id         |

## Body / parameters

Follow the right-rail cURL.

## Response

### 200

Account fields such as `quota` / `used_quota` when applicable. Errors: right rail and [Error codes](/en/faqs/connection-usage).

<Panel>
  <RequestExample>
    ```bash cURL theme={null}
    curl --request GET \
      --url https://api.omnimux.ai/v1/video/generations/$TASK_ID \
      --header 'Authorization: Bearer <token>'
    ```
  </RequestExample>

  <ResponseExample>
    ```json 200 theme={null}
    { "ok": true }
    ```

    ```json 400 theme={null}
    { "error": { "message": "Invalid request", "type": "invalid_request_error", "code": "bad_request" } }
    ```

    ```json 401 theme={null}
    { "error": { "message": "Invalid token", "type": "authentication_error", "code": "unauthorized" } }
    ```

    ```json 402 theme={null}
    {
      "error": {
        "message": "Insufficient quota. Please top up your account.",
        "type": "insufficient_quota",
        "code": "insufficient_quota"
      }
    }
    ```

    ```json 403 theme={null}
    { "error": { "message": "Forbidden", "type": "permission_error", "code": "forbidden" } }
    ```

    ```json 429 theme={null}
    { "error": { "message": "Rate limit exceeded", "type": "rate_limit_error", "code": "rate_limit_exceeded" } }
    ```

    ```json 500 theme={null}
    { "error": { "message": "Internal server error", "type": "server_error", "code": "internal_error" } }
    ```
  </ResponseExample>
</Panel>
