V1ModelsEdit capable

Get image edit-capable models

Get models suitable for image editing (filtered by tag=image-editing).

GET
/v1/models/edit-capable

Response Body

curl -X GET "https://api-beta.daydreams.systems/v1/models/edit-capable"
{
  "models": [
    {
      "name": "string",
      "description": "string",
      "type": "chat",
      "capabilities": {
        "maxTokens": 0,
        "supportsStreaming": true,
        "supportsSystemMessages": true,
        "supportsFunctionCalling": true,
        "supportsVision": true,
        "supportsJson": true,
        "generatesImages": true,
        "generatesTextToVideo": true,
        "generatesImageToVideo": true,
        "tokenParameterType": "max_tokens"
      },
      "metadata": {
        "totalProviders": 0,
        "availableProviders": 0,
        "priceRange": {
          "min": 0,
          "max": 0
        },
        "latencyRange": {
          "min": 0,
          "max": 0
        }
      }
    }
  ],
  "count": 0,
  "filters": {
    "property1": null,
    "property2": null
  }
}

{
  "error": "Internal server error",
  "code": "INTERNAL_SERVER_ERROR",
  "message": "An unexpected error occurred while processing your request"
}