CCAPI
  1. Schemas
CCAPI
  • Chat
    • Create chat completion
      POST
  • Audio
    • Convert text to speech
      POST
  • Images
    • Generate images (OpenAI-compatible)
      POST
    • Generate images (multimodal contents API)
      POST
    • Get job status
      GET
  • Catalog
    • List available models
    • List providers
    • Get provider details
  • Schemas
    • Schemas
      • ErrorObject
      • ErrorResponse
      • ChatMessage
      • ChatToolFunction
      • ChatTool
      • ChatCompletionRequest
      • ChatCompletionResponse
      • AudioSpeechRequest
      • AudioSpeechResponse
      • LegacyImageGenerationRequest
      • LegacyImageGenerationResponse
      • MultimodalInputContent
      • MultimodalImageParameters
      • MultimodalImageGenerationRequest
      • ImageDatum
      • MultimodalImageGenerationResponse
      • ModelSummary
      • ModelListResponse
      • ProviderSummary
      • ProviderListResponse
      • ProviderDetailResponse
    • Response
      • BadRequest
      • Unauthorized
      • BillingError
      • RateLimit
      • InternalError
  1. Schemas

MultimodalImageGenerationResponse

{
    "id": "string",
    "created": 0,
    "model": "string",
    "status": "pending",
    "execution": {
        "mode": "sync",
        "operation": "text-to-image",
        "provider": "string"
    },
    "data": [
        {
            "url": "http://example.com",
            "b64_json": "string",
            "revised_prompt": "string",
            "seed": 0
        }
    ],
    "poll_url": "string",
    "estimated_time": 0,
    "error": {
        "message": "Missing or invalid Authorization header",
        "type": "invalid_request_error",
        "code": "unauthorized",
        "details": {}
    }
}
Built with