Skip to main content

Models

GET /v1/models
List all models currently available on the network.

Request

curl https://inference.dria.co/v1/models \
  -H "Authorization: Bearer dkn_live_..."

Response

{
  "data": [
    {
      "id": "qwen3.5:9b",
      "object": "model",
      "created": 1710000000,
      "owned_by": "dria",
      "node_count": 12
    },
    {
      "id": "qwen2.5-vl:7b",
      "object": "model",
      "created": 1710000000,
      "owned_by": "dria",
      "node_count": 5
    }
  ]
}

Fields

FieldTypeDescription
idstringModel identifier (use this in requests)
objectstringAlways "model"
createdintegerUnix timestamp
owned_bystringProvider
node_countintegerNumber of nodes currently serving this model
The node_count field indicates how many nodes are available for a given model. Higher counts mean better availability and throughput.