models

List models

Lists the models available to your API key.

The response includes model IDs that can be used in chat completion and embedding requests.

By default, this endpoint follows the OpenAI-compatible models-list shape. Doubleword also supports optional query-string extensions for model discovery: group filters to comma-separated group UUIDs, available_for_realtime filters by whether realtime traffic is allowed for the model, and include_reasoning_capabilities=true adds the reasoning efforts supported by every provider behind each model.

get/models

Query parameters

groupstring

Doubleword extension. Filter to models in one or more groups (comma-separated UUIDs). This is intersected with the API key's normal model access.

available_for_realtimeboolean

Doubleword extension. true returns models without a realtime deny rule; false returns models with one.

include_reasoning_capabilitiesboolean

Doubleword extension, disabled by default. true adds supported_reasoning_efforts when reasoning support is known for every provider behind a model.

Response

List of models your API key can access.

objectstring required

The object type, always "list".

Example response

{
  "data": [
    {
      "created": 1703187200,
      "id": "Qwen/Qwen3-30B-A3B-FP8",
      "object": "model",
      "owned_by": "qwen"
    }
  ],
  "object": "list"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.