> ## 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.

# Get Model

> Get details for a specific model by slug

## Path Parameters

<ParamField path="slug" type="string" required>
  Model slug, e.g. `dall-e-3`, `flux-1.1-pro`, `kling-v2.1`
</ParamField>

## Request

```bash theme={null}
curl "https://elumenta.ru/api/v2/models/dall-e-3" \
  -H "Authorization: Bearer nb_YOUR_API_KEY"
```

## Response

```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_en": "OpenAI's DALL-E 3 — precise prompt following, high coherence",
  "supports_streaming": false,
  "config": {
    "sizes": ["1024x1024", "1024x1792", "1792x1024"],
    "formats": ["webp", "png", "jpeg"],
    "quality_options": ["standard", "hd"]
  }
}
```

## Response Fields

<ResponseField name="slug" type="string">Model identifier used in `/generate` requests.</ResponseField>
<ResponseField name="token_cost" type="integer">Base token cost per generation.</ResponseField>
<ResponseField name="min_token_cost" type="integer">Minimum possible cost (cheapest params).</ResponseField>
<ResponseField name="max_token_cost" type="integer">Maximum possible cost (most expensive params).</ResponseField>
<ResponseField name="min_plan" type="string">`free` (Starter-tier) or `basic` (Basic+ required).</ResponseField>
<ResponseField name="config" type="object">Model-specific parameters: available sizes, formats, quality options, etc.</ResponseField>

See [List Models](/en/api-reference/models/list) for the full catalog.
