v1

latestOpenAPI 3.1.02026-07-2661513.6 KB

List models

List the live model catalog, including pricing, modalities, and capability metadata.

get/models

Response

Model catalog response

objectstring required

Response container type.

Example response

{
  "object": "list",
  "data": [
    {
      "id": "gemini-veo31",
      "object": "model",
      "model_type": "video",
      "pricing": {
        "price": 0.01875,
        "currency": "USD",
        "unit": "second"
      },
      "modalities": {
        "input": [
          "text",
          "image"
        ],
        "output": [
          "video"
        ]
      },
      "capabilities": {
        "supported_seconds": [
          4,
          6,
          8
        ],
        "supported_sizes": [
          "1280x720",
          "720x1280",
          "1920x1080"
        ],
        "max_reference_image_bytes": 8388608
      }
    }
  ]
}