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

# Router Models & Pricing

> The model catalog for the Perplexity Router API, with per-token pricing for Perplexity-hosted and third-party models.

<Note>
  Router API is in private preview. Email [api@perplexity.ai](mailto:api@perplexity.ai) to request access.
</Note>

## Overview

Every model below is available through both Router endpoints — [Chat Completions](/api-reference/gateway-chat-completions-post) and [Messages](/api-reference/gateway-messages-post) — under the same `creator/model-name` id. Prices are in USD per 1 million tokens, and you are billed at the requested model's rates regardless of how the request is served.

For the live catalog, query [`GET /models`](/api-reference/gateway-models-get); the tables below show the current catalog.

<Note>
  Cached input is billed separately from fresh input: cache reads are billed at the discounted per-model rate shown in the "Cache read" column, and cache writes at the rate shown (or at the input rate where no dedicated write rate is listed). Reasoning tokens are billed at the output rate.
</Note>

## Perplexity-Hosted Models

Open-source models hosted by Perplexity — the `perplexity/` prefix reflects who serves the model, not who created it. The catalog includes models from DeepSeek, Moonshot AI, NVIDIA, and Z.AI:

| Model                                           | Input (\$/1M) | Output (\$/1M) | Cache read (\$/1M) | Docs                                                                                                |
| ----------------------------------------------- | ------------: | -------------: | -----------------: | --------------------------------------------------------------------------------------------------- |
| **`perplexity/deepseek-v4-flash-0731`**         |          0.13 |           0.26 |              0.028 | [DeepSeek](https://huggingface.co/deepseek-ai)                                                      |
| **`perplexity/kimi-k3`**                        |          3.00 |          15.00 |               0.30 | [Kimi K3](https://huggingface.co/moonshotai/Kimi-K3)                                                |
| **`perplexity/glm-5.2`**                        |          1.40 |           4.40 |               0.14 | [GLM](https://docs.z.ai)                                                                            |
| **`perplexity/glm-5.3`**                        |          1.40 |           4.40 |               0.26 | [GLM](https://docs.z.ai)                                                                            |
| **`perplexity/nemotron-3.5-lightning-30b-a3b`** |        0.0115 |           0.17 |            0.00115 | [Nemotron 3.5 Lightning](https://huggingface.co/nvidia/NVIDIA-Nemotron-3.5-Lightning-30B-A3B-NVFP4) |
| **`perplexity/nemotron-3-ultra-550b-a55b`**     |          0.25 |           2.50 |               0.25 | [Nemotron 3 Ultra](https://huggingface.co/nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16)            |

## Listing Models Programmatically

```bash theme={null}
curl 'https://api.perplexity.ai/router/v1/models' \
  -H "Authorization: Bearer $PERPLEXITY_API_KEY" | jq
```

The response lists every available model sorted by id, including each model's base token prices. Requesting a model that is not in the catalog returns a `400` naming the invalid model — the catalog is also the allowlist.

## Next Steps

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/docs/router/quickstart">
    Make your first Router API call.
  </Card>

  <Card title="Pricing & Billing" icon="receipt" href="/docs/getting-started/pricing">
    How credits, billing, and usage tiers work across the platform.
  </Card>
</CardGroup>
