---
title: "Retrieve model"
method: GET
path: "/models/{model}"
tags: ["models"]
---

# Retrieve model

`GET /models/{model}`

Retrieves information about a specific model.

## Path parameters

- `model` string, required

## Response `200`

Model details including ID, owner, and creation timestamp.

- ModelObject — A model object.
  - `created` integer, required — The Unix timestamp of when the model was created.
  - `id` string, required — The model identifier.
  - `object` string, required — The object type, always "model".
  - `owned_by` string, required — The organization that owns the model.
  - `supported_reasoning_efforts` SupportedReasoningEfforts — Canonical efforts that every provider behind a model can accept.
    - `chat_completions` ReasoningEffort[], nullable
    - `responses` ReasoningEffort[], nullable

## Other responses

- `401` — Invalid or missing API key. Ensure your `Authorization` header is set to `Bearer YOUR_API_KEY`.
- `404` — The specified model does not exist or you don't have access to it.

---

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