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

# Get Model

> Retrieve details for a specific model by its slug.

## Path Parameters

<ParamField path="slug" type="string" required>
  The model slug. See [List Models](/api-reference/models/list) for all available slugs.
</ParamField>

***

## Response `200 OK`

Returns a single model object with the same shape as in [List Models](/api-reference/models/list).

***

## Example

```bash theme={null}
curl https://veogen.studio/api/v1/models/veo-3.1-fast \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/json"
```

**Response:**

```json theme={null}
{
  "data": {
    "slug": "veo-3.1-fast",
    "label": "Veo 3.1 Fast",
    "type": "video",
    "price_usd": 0.30,
    "multiply_by_duration": false,
    "resolution_multipliers": {
      "720p": 1,
      "1080p": 1,
      "4k": 3
    },
    "supported_params": ["prompt", "duration", "aspect_ratio", "resolution", "image_urls", "mode"],
    "aspect_ratios": ["16:9", "9:16"],
    "resolutions": ["720p", "1080p", "4k"],
    "durations": [8],
    "modes": ["frame", "ingredient"],
    "docs_url": "https://veogen.studio/api-reference/models/veo-3.1-fast"
  }
}
```

**404 — Model not found:**

```json theme={null}
{
  "error": "Model not found."
}
```
