---
title: "Get Model"
method: GET
path: "/v1/models/{model_id}"
---

# Get Model

`GET /v1/models/{model_id}`

## Path parameters

- `model_id` string, required

## Response `200`

Successful Response

- ModelDetail
  - `id` string, required
  - `name` string, required
  - `description` string, required
  - `organization` OrganizationRef, required
    - `id` string, required
    - `name` string, required
  - `family` FamilyRef
    - `id` string, required
    - `name` string, required
  - `license` LicenseRef, required
    - `id` string, required
    - `name` string, required
    - `allow_commercial` boolean, required
    - `open_source` boolean, required
  - `open_weight` boolean, required
  - `model_type` string, required
  - `modalities` string[], required
  - `context_window` integer, nullable
  - `param_count` integer, nullable
  - `training_tokens` integer, nullable
  - `knowledge_cutoff` string, date, nullable
  - `release_date` string, date, nullable
  - `providers` ProviderPricing[], required
    - `provider_id` string, required
    - `provider_name` string, required
    - `input_price_per_m` number, nullable
    - `output_price_per_m` number, nullable
    - `throughput_tps` number, nullable
    - `latency_s` number, nullable
    - `status` string, required
  - `top_scores` object, required
  - `inference` ModelInference, required — Discovery metadata for invoking a model via the LLM Stats gateway. Always present on model responses. When `available` is False, optional fields are omitted and consumers should not attempt gateway calls.
    - `available` boolean, required
    - `endpoint` string, nullable
    - `gateway_model_id` string, nullable
    - `openai_compatible` boolean
    - `supports_streaming` boolean
    - `supports_tools` boolean
    - `supports_vision` boolean
    - `docs_url` string
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `source` string, required
  - `url` string, required
  - `scores` BenchmarkScore[], required
    - `benchmark_id` string, required
    - `benchmark_name` string, required
    - `category` string, nullable
    - `description` string, nullable
    - `score` number, required
    - `normalized_score` number, nullable
    - `max_score` number, required
    - `is_self_reported` boolean, required
    - `verified_by_llmstats` boolean, required
    - `rank` integer, nullable
    - `source_url` string, nullable
    - `scored_at` string, date-time, required
  - `sources` ModelSources, required
    - `api_ref` string, nullable
    - `paper` string, nullable
    - `weights` string, nullable
    - `repo` string, nullable

## Other responses

- `401` — Unauthorized
- `404` — Not Found
- `422` — Validation Error

---

[API](https://skmtc.dev/llm-stats/apis/llm-stats-api.md) · [All operations](https://skmtc.dev/llm-stats/apis/llm-stats-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/llm-stats/llm-stats-api/revisions/83ad19251fbd/schema)
