My App
API ReferenceExperiments

List Models

Get the models you can use in experiments.

See which models are available for running inference when you create an experiment. Use these identifiers in your experiment configuration.

GET
/v1/experiments/models

Header Parameters

x-workspace-id?|

Workspace UUID to operate within. Required for session auth and user-scoped API keys. Optional for workspace-scoped API keys (uses key's workspace if omitted).

Response Body

application/json

application/json

curl -X GET "https://loading/v1/experiments/models"
{
  "models": [
    {
      "value": "string",
      "label": "string"
    }
  ]
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}