Skip to main content
GET
/
models
List Models
curl --request GET \
  --url https://api.hedra.com/web-app/public/models \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>",
    "type": "<string>",
    "aspect_ratios": [
      "<string>"
    ],
    "resolutions": [
      "<string>"
    ],
    "durations": [
      "<string>"
    ],
    "requires_start_frame": true,
    "requires_audio_input": true,
    "custom_resolution": true,
    "price_details": {
      "credit_cost": 123,
      "unit_scale": 123,
      "billing_unit": "<string>"
    },
    "dimensions": {}
  }
]

Authorizations

X-API-Key
string
header
required

Response

200 - application/json

Successful Response

id
string<uuid>
required

ID of the model

name
string
required

Name of the model

description
string | null
required

Description of the model.

type
string
required

Type of generation the model applies to.

price_details
object
required

Pricing details of the model.

aspect_ratios
string[] | null

Aspect ratios the model supports.

resolutions
string[] | null

Resolutions the model supports.

durations
string[] | null

Durations the model supports.

requires_start_frame
boolean | null

Whether the model is conditioned by a start frame.

requires_audio_input
boolean | null

Whether the model is conditioned by audio input.

custom_resolution
boolean | null

Whether the model supports custom resolution.

dimensions
object | null

Width and height for each aspect_ratio and resolution tuple.

I