Skip to main content
GET
/
api
/
v1
/
models
List Models
curl --request GET \
  --url https://veogen.studio/api/v1/models
{
  "data": [
    {
      "slug": "<string>",
      "label": "<string>",
      "type": "<string>",
      "price_usd": 123,
      "multiply_by_duration": true,
      "resolution_multipliers": {},
      "supported_params": [
        {}
      ],
      "aspect_ratios": [
        {}
      ],
      "resolutions": [
        {}
      ],
      "durations": [
        {}
      ],
      "modes": [
        {}
      ],
      "docs_url": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://veogenstudio.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Response 200 OK

Returns an array of model objects.
data
array

Model Catalog

Video Models

SlugPriceBilling
grok-video-1$0.03/sPer-second × duration
veo-3.1-fastfrom $0.30Per-video (4K = 3×)
sora-2from $0.40Per-video
sora-2-profrom $1.20Per-video
seedance-2.0from $0.132/sPer-second × duration (720p = 2.15×). With video ref: from $0.08/s
seedance-2.0-fastfrom $0.1056/sPer-second × duration (720p = 2.17×). With video ref: from $0.0632/s

Image Models

SlugPriceBilling
gpt-4o-image$0.02Per-image
seedream-4.5from $0.04Per-image (2K = 2×, 4K = 3×)
seedream-5.0-litefrom $0.04Per-image (2K = 2×, 4K = 3×)
nano-banana-profrom $0.10Per-image (2K = 2×, 4K = 3×)
nano-banana-2from $0.04Per-image (2K = 2×, 4K = 3×)

Example

curl https://veogen.studio/api/v1/models \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/json"
Response (excerpt):
{
  "data": [
    {
      "slug": "veo-3.1-fast",
      "label": "Veo 3.1 Fast",
      "type": "video",
      "price_usd": 0.30,
      "multiply_by_duration": false,
      "resolution_multipliers": {
        "720p": 1,
        "1080p": 1,
        "4k": 3
      },
      "supported_params": ["prompt", "duration", "aspect_ratio", "resolution", "image_urls", "mode"],
      "aspect_ratios": ["16:9", "9:16"],
      "resolutions": ["720p", "1080p", "4k"],
      "durations": [8],
      "modes": ["frame", "ingredient"],
      "docs_url": "https://veogen.studio/api-reference/models/veo-3.1-fast"
    },
    {
      "slug": "grok-video-1",
      "label": "Grok Video",
      "type": "video",
      "price_usd": 0.03,
      "multiply_by_duration": true,
      "resolution_multipliers": null,
      "supported_params": ["prompt", "aspect_ratio", "image_urls", "mode", "duration", "resolution"],
      "aspect_ratios": ["16:9", "9:16", "1:1", "2:3", "3:2"],
      "resolutions": ["480p", "720p"],
      "durations": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30],
      "modes": ["custom", "normal", "fun", "spicy"],
      "docs_url": "https://veogen.studio/api-reference/models/grok-video-1"
    },
    {
      "slug": "gpt-4o-image",
      "label": "GPT-4o Image",
      "type": "image",
      "price_usd": 0.02,
      "multiply_by_duration": false,
      "resolution_multipliers": null,
      "supported_params": ["prompt", "size", "image_urls"],
      "aspect_ratios": ["1:1", "2:3", "3:2", "3:4", "4:3", "16:9"],
      "resolutions": [],
      "durations": [],
      "modes": [],
      "docs_url": "https://veogen.studio/api-reference/models/gpt-4o-image"
    }
  ]
}