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

# List models

`GET /v1/models`

This endpoint mimics the OpenAI models endpoint format, returning a list of
available models with their associated metadata. Each model includes standard
OpenAI-compatible fields to ensure compatibility with existing OpenAI client libraries.

## Response `200`

List of available models

- ModelList — Response object for the models listing endpoint
  - `data` Model[], required — List of model objects
    - `created` integer, required — Unix timestamp (in seconds) when this model was created
    - `id` string, required — The model identifier
    - `object` string, required — The object type, which is always "model"
    - `owned_by` string, required — Organization that owns the model
  - `object` string, required — The object type, which is always "list"

## Other responses

- `500` — Failed to retrieve list of available models

## Changes

- **2025-01-25** `d714acb641bd` — 1 breaking, 4 info
  - the response's body type changed from no type to `object` for status `200`
  - api operation id `models_handler` removed and replaced with `models_list`
  - the endpoint scheme security `bearerAuth` was added to the API
  - added the required property `data` to the response with the `200` status
  - …1 more
- **2024-12-12** `444230182e5e` — 1 info
  - api tag `Models` added
- **2024-12-06** `45e3254839bd` — 3 breaking, 3 info
  - the response's body type changed from `object` to no type for status `200`
  - removed the required property `data` from the response with the `200` status
  - removed the required property `object` from the response with the `200` status
  - api operation id `models_list` removed and replaced with `models_handler`
  - …2 more

[Change history](https://skmtc.dev/atomaai/apis/atoma-proxy/changes/v1/models/get.md)

---

[API](https://skmtc.dev/atomaai/apis/atoma-proxy.md) · [All operations](https://skmtc.dev/atomaai/apis/atoma-proxy/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/atomaai/atoma-proxy/revisions/07694b7228b0/schema)
