V1ModelsId

Get model details

Get detailed information about a specific AI model including capabilities, pricing, limits, and current status

GET
/v1/models/{id}

Path Parameters

idstring

Model identifier (e.g., "openai/gpt-4", "anthropic/claude-3")

Response Body

curl -X GET "https://api-beta.daydreams.systems/v1/models/string"
{
  "name": "string",
  "fullProviderModelName": "string",
  "endpoint": "string",
  "pricing": {
    "input": 0,
    "output": 0,
    "cache_read": 0,
    "cache_write": 0,
    "image": 0,
    "audio": 0
  },
  "provider": "string",
  "type": "chat",
  "description": "string",
  "capabilities": {
    "maxTokens": 0,
    "supportsStreaming": true,
    "supportsSystemMessages": true,
    "supportsFunctionCalling": true,
    "supportsVision": true,
    "supportsJson": true,
    "generatesImages": true,
    "generatesTextToVideo": true,
    "generatesImageToVideo": true,
    "tokenParameterType": "max_tokens"
  },
  "limits": {
    "maxRequestsPerMinute": 0,
    "maxTokensPerMinute": 0,
    "maxConcurrentRequests": 0
  },
  "aliases": [
    "string"
  ],
  "latency": {
    "averageMs": 0,
    "minMs": 0,
    "maxMs": 0,
    "p95Ms": 0,
    "successRate": 0,
    "sampleSize": 0,
    "lastUpdated": 0
  }
}

{
  "error": "User not found",
  "code": "USER_NOT_FOUND",
  "message": "No user found with the specified ID"
}

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