---
title: "List loaded models"
method: GET
path: "/models"
tags: ["Models"]
---

# List loaded models

`GET /models`

Returns information about the loaded model(s). The list always contains a single element describing the current model. See the OpenAI *Models* API documentation for details.

## Response `200`

A list containing a single model object

- ListModelsResponseDto — Response for `GET /v1/models` – a list that always contains a single model entry.
  - `object` 'list', required
  - `data` ModelDto[], required
    - `source_url` string, required — URL to the source of the model.
    - `id` string, required — Unique identifier for the model (normally the file path).
    - `object` 'model', required
    - `name` string, required — Human‑readable name of the model.
    - `version` string, required — Version string of the model.
    - `description` string, required — Long description of the model.
    - `format` string, required — File format (e.g., gguf).
    - `ctx_len` integer, required — Context length the model was trained with.
    - `prompt_template` string, required — Template used to build prompts.
    - `temperature` number, required — Default temperature for generation.
    - `top_p` number, required — Default nucleus‑sampling probability.
    - `stream` boolean, required — Whether streaming is enabled by default.
    - `max_tokens` integer, required — Maximum tokens the model can generate.
    - `stop` string[], required — Default stop sequences.
    - `frequency_penalty` number, required — Default frequency penalty.
    - `presence_penalty` number, required — Default presence penalty.
    - `author` string, required
    - `tags` string[], required
    - `size` integer, required
    - `cover` string, required
    - `engine` string, required

---

[API](https://skmtc.dev/janhq/apis/jan-api-server-endpoints.md) · [All operations](https://skmtc.dev/janhq/apis/jan-api-server-endpoints/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/janhq/jan-api-server-endpoints/revisions/8e64bd346c2f/schema)
