Skip to content

List Models

Retrieve the roster of models you can call, including availability, cost tiers, and supported features.

Endpoint

  • Base URL: https://devnet.aimo.network/api/v1
  • GET /models
  • No pagination; all models returned in a single response

Sample Response

{
  "data": [
    {
      "name": "BAAI-bge-large-en-v1-5",
      "display_name": "BAAI BGE Large EN v1.5 (Free)",
      "providers": [
        {
          "id": "vTdFo728T1zRvBUGMYGfvvVBgewzvZDbpdXekVBMi7N",
          "name": "akash-ml",
          "pricing": {
            "prompt": 0.0,
            "completion": 0.0,
            "image": null
          }
        }
      ],
      "context_length": 8192,
      "architecture": {
        "input_modalities": ["text"],
        "output_modalities": ["text"]
      }
    },
    {
      "name": "DeepSeek-R1-Distill-Qwen-32B",
      "display_name": "DeepSeek R1 Distill Qwen 32B (Free)",
      "providers": [
        {
          "id": "vTdFo728T1zRvBUGMYGfvvVBgewzvZDbpdXekVBMi7N",
          "name": "akash-ml",
          "pricing": {
            "prompt": 0.0,
            "completion": 0.0,
            "image": null
          }
        }
      ],
      "context_length": 65536,
      "architecture": {
        "input_modalities": ["text"],
        "output_modalities": ["text"]
      }
    }
  ]
}
Model object fields
FieldTypeDescription
namestringModel identifier used in API requests
display_namestringHuman-readable label shown in UI
providersarrayProvider objects exposing id, name, and pricing
context_lengthintegerMaximum number of tokens accepted per request
architectureobjectinput_modalities and output_modalities; tokenizer metadata planned