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

# List models

> Discover models available to your API key.

List the models available to your API key before selecting a model in a request.

Use each returned `data[].id` as the `model` value for compatible endpoints. The response is scoped to your key, so it is more reliable than a hardcoded model list.

For current public pricing, visit the [SnapGen models page](https://snapgen.org/models).

<RequestExample>
  ```bash Curl theme={null}
  curl https://api.snapgen.org/v1/models \
    -H "Authorization: Bearer sk-xxxx"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "object": "list",
    "data": [
      {
        "id": "gpt-5.4-mini",
        "object": "model",
        "created": 1730000000,
        "owned_by": "snapgen"
      }
    ]
  }
  ```
</ResponseExample>
