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

# Models and pricing

> Learn how to find model names, understand token-based pricing, and review usage costs in Moxus AI.

The model catalog shows the models available to your account, including provider, capability labels, context length, and pricing. Use the model name exactly as shown in the catalog when setting the `model` field.

<Columns cols={3}>
  <Card title="Model name" icon="brain-circuit">
    Copy the exact model identifier from the catalog. Names are case-sensitive.
  </Card>

  <Card title="Token pricing" icon="chart-no-axes-combined">
    Most models charge separately for input and output tokens.
  </Card>

  <Card title="Usage logs" icon="list-checks">
    Review request status, tokens, and cost after each call.
  </Card>
</Columns>

## Pricing modes

### Token-based models

```text theme={null}
cost = (input tokens x input price + output tokens x output price) x group multiplier
```

Prices are usually listed per million tokens. Some multimodal or task-based models charge per call instead of by token count.

## Cost controls

* Choose smaller models for simple tasks.
* Limit context to relevant messages and documents.
* Set `max_tokens` when output should be bounded.
* Use separate API keys with quota limits for each project.
* Review usage logs regularly.

## Next steps

* [Billing](/en/platform/billing)
* [Dashboard and usage](/en/platform/dashboard-and-usage)
* [Quickstart](/en/overview/quickstart)
