Skip to content

models

GET
/v1/models
curl --request GET \
--url https://example.com/v1/models

Served model info

Media type application/json

Collection of available models

object
data
required
Array<object>

Model information metadata about an available mode

object
adapter_generation

Current immutable LoRA generation for adapter model cards.

string | null
created
required
integer format: int64
id
required
string
mcp_servers_connected

Number of connected MCP servers

integer | null
mcp_tools_count

Number of tools available from MCP servers

integer | null
object
required
string
owned_by
required
string
parent

Base model that owns this adapter, when the card represents a LoRA adapter.

string | null
root

Public source identifier for this model card.

string | null
status

Model status: “loaded”, “unloaded”, or “reloading”

string | null
tools_available

Whether tools are available through MCP or tool callbacks

boolean | null
object
required
string
Example generated
{
"data": [
{
"adapter_generation": "example",
"created": 1,
"id": "example",
"mcp_servers_connected": 1,
"mcp_tools_count": 1,
"object": "example",
"owned_by": "example",
"parent": "example",
"root": "example",
"status": "example",
"tools_available": true
}
],
"object": "example"
}