---
title: "Get Model"
method: GET
path: "/models/{modelId}"
tags: ["Models"]
---

# Get Model

`GET /models/{modelId}`

Get detailed information about a specific model including specs, benchmarks, costs, and products using it. Available on all plans.

## Path parameters

- `modelId` string, uuid, required — The model ID to retrieve details for

## Response `200`

Model retrieved successfully

- GetModelResponse
  - `id` string, uuid, required — The model ID.
  - `canonicalId` string, required — The canonical model identifier.
  - `displayName` string, required — Human-readable model name.
  - `provider` string, required — Model provider (e.g. OpenAI, Anthropic).
  - `family` string, nullable, required — Model family grouping.
  - `description` string, nullable, required — Model description.
  - `contextWindow` number, nullable, required — Context window size.
  - `inputCostPer1k` number, nullable, required — Cost per 1,000 input tokens.
  - `outputCostPer1k` number, nullable, required — Cost per 1,000 output tokens.
  - `inputModalities` string[], nullable, required — Supported input modalities.
  - `outputModalities` string[], nullable, required — Supported output modalities.
  - `supportedParameters` string[], nullable, required — Supported generation parameters.
  - `source` string, required — Model data source.
  - `createdAt` string, date-time, required — When the model was created.
  - `expirationDate` string, date-time, nullable, required — When the model expires, if applicable.
  - `intelligenceIndex` number, nullable, required — Intelligence benchmark index.
  - `codingIndex` number, nullable, required — Coding benchmark index.
  - `mathIndex` number, nullable, required — Math benchmark index.
  - `mmluPro` number, nullable, required — MMLU-Pro benchmark score.
  - `gpqa` number, nullable, required — GPQA benchmark score.
  - `usageCount` number, required — Number of conversations using this model.
  - `lastUsedAt` string, date-time, nullable, required — When the model was last used.
  - `products` ModelProductUsage[], required — Products using this model.
    - `id` string, uuid, required — The product ID.
    - `name` string, required — Product name.
    - `icon` string, nullable, required — Product icon.
    - `conversationCount` number, required — Number of conversations in this product.

## Other responses

- `404` — Model not found
- `500` — Server error

## Changes

- **2026-05-01** `f52e699d4abf` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/greenflash-ai/apis/greenflash-api-reference/changes/models/:modelId/get.md)

---

[API](https://skmtc.dev/greenflash-ai/apis/greenflash-api-reference.md) · [All operations](https://skmtc.dev/greenflash-ai/apis/greenflash-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/greenflash-ai/greenflash-api-reference/revisions/c566e560677d/schema)
