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

# List models

`GET /v1/models`

Lists the currently available models, and provides basic information about each one such as the owner and availability.

## Query parameters

- `ai_project_id` string, nullable — Project ID to list models from.
- `verbose` boolean

## Response `200`

OK

- ListModelResponse
  - `object` 'list', required
  - `data` union[], required — A list of currently available models.
    - union
      - AppModelsModelsModel
        - `id` string, required — The model identifier, which can be referenced in the API endpoints.
        - `created` integer, required — The Unix timestamp (in seconds) when the model was created.
        - `object` 'model', required
        - `owned_by` string, required — The organization that owns the model.
        - `status` 'validating' | 'active' | 'error' | 'deleted' — Enum representing the possible statuses of a model.
      - RichModel
        - `id` string, required
        - `name` string, required
        - `created` integer, required
        - `description` string, required
        - `context_length` integer, required
        - `architecture` Architecture, required
          - `modality` string, required
          - `tokenizer` string, required
          - `instruct_type` string, nullable, required
        - `quantization` 'int4' | 'int8' | 'fp4' | 'fp6' | 'fp8' | 'fp16' | 'bf16' | 'fp32' — Allowed quantization types according to https://openrouter.ai/docs/use-cases/for-providers.
        - `pricing` Pricing, required
          - `prompt` string
          - `completion` string
          - `image` string
          - `price_per_video_second` string
          - `request` string
          - `price_per_minute` string
        - `per_request_limits` object, nullable
        - `status` 'validating' | 'active' | 'error' | 'deleted' — Enum representing the possible statuses of a model.
        - `status_reason` string, nullable
        - `object` string
        - `owned_by` string
        - `regions` RichModelRegion[], nullable
          - `country_code` string, required
          - `name` string, required
        - `supported_features` string[], nullable
        - `supported_sampling_parameters` string[], nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/nebius/apis/nebius-openai-compatible-inference-api.md) · [All operations](https://skmtc.net/nebius/apis/nebius-openai-compatible-inference-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nebius/nebius-openai-compatible-inference-api/revisions/0fb323abba3c/schema)
