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

# Получить модель

> Получить детали конкретной модели по слагу

## Параметры пути

<ParamField path="slug" type="string" required>
  Слаг модели, например: `dall-e-3`, `flux-1.1-pro`, `kling-v2.1`
</ParamField>

## Запрос

```bash theme={null}
curl "https://elumenta.ru/api/v2/models/dall-e-3" \
  -H "Authorization: Bearer nb_ВАШ_КЛЮЧ"
```

## Ответ

```json theme={null}
{
  "slug": "dall-e-3",
  "name": "DALL-E 3",
  "category": "image",
  "provider": "OpenAI",
  "min_plan": "free",
  "token_cost": 5,
  "min_token_cost": 5,
  "max_token_cost": 13,
  "description_ru": "DALL-E 3 от OpenAI — точное следование промпту, высокая когерентность",
  "supports_streaming": false,
  "config": {
    "sizes": ["1024x1024", "1024x1792", "1792x1024"],
    "formats": ["webp", "png", "jpeg"],
    "quality_options": ["standard", "hd"]
  }
}
```

## Поля ответа

<ResponseField name="slug" type="string">Идентификатор модели для запросов `/generate`.</ResponseField>
<ResponseField name="token_cost" type="integer">Базовая стоимость в токенах за генерацию.</ResponseField>
<ResponseField name="min_token_cost" type="integer">Минимальная стоимость (самые дешёвые параметры).</ResponseField>
<ResponseField name="max_token_cost" type="integer">Максимальная стоимость (самые дорогие параметры).</ResponseField>
<ResponseField name="min_plan" type="string">`free` (Starter-тир) или `basic` (требуется Basic+).</ResponseField>
<ResponseField name="config" type="object">Параметры модели: доступные размеры, форматы, качество и т.д.</ResponseField>

Полный каталог — [Список моделей](/ru/api-reference/models/list).
