---
title: "GPT-5.6 Luna"
description: "Fast, cost-efficient general tasks. API identifier gpt-5.6-luna, 262,144-token context window"
canonical: "https://inference.boundless.network/models/gpt-5.6-luna"
---

# GPT-5.6 Luna

Fast, cost-efficient general tasks.

| | |
| --- | --- |
| API identifier | `gpt-5.6-luna` |
| Developer | OpenAI |
| Context window | 262,144 tokens |
| Supports | text, reasoning, tool-use |
| Status | Serving |

## Rates

US dollars per 1M tokens, on-demand tier.

| Input | Cached input | Output |
| --- | --- | --- |
| $0.20 | $0.02 | $1.20 |

## Call it

Put `gpt-5.6-luna` in the `model` field. The same request works against the Anthropic Messages API — see [API Compatibility](https://inference.boundless.network/docs/api-compatibility).

```bash
curl https://api.inference.boundless.network/v1/chat/completions \
  -H "Authorization: Bearer $BOUNDLESS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.6-luna",
    "messages": [{
      "content": "Say hello",
      "role": "user"
    }]
  }'
```

Every model we serve is listed at [Models](https://inference.boundless.network/models); the rate card in full is on [Pricing](https://inference.boundless.network/docs/pricing).
