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

# Model Reference

> Available Nordlys models with pricing and specifications

## Available Models

| Model     | Model ID            | Context Window |
| --------- | ------------------- | -------------- |
| Hypernova | `nordlys/hypernova` | 200K tokens    |

Hypernova is a Mixture of Models system that activates the right models per prompt.

## Pricing

| Token Type   | Price (per 1M tokens) |
| ------------ | --------------------- |
| Input        | \$4.00                |
| Cached Input | \$0.40                |
| Output       | \$12.00               |

## Supported Endpoints

| Endpoint                                 | Format           |
| ---------------------------------------- | ---------------- |
| `/v1/chat/completions`                   | OpenAI           |
| `/v1/messages`                           | Anthropic        |
| `/v1/responses`                          | OpenAI Responses |
| `/v1beta/models/{model}:generateContent` | Gemini           |

## Quick Example

```bash theme={null}
curl https://api.nordlyslabs.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "nordlys/hypernova", "messages": [{"role": "user", "content": "Hello!"}]}'
```
