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

ModelListResponse

{
    "object": "list",
    "data": [
        {
            "id": "string",
            "object": "model",
            "created": 0,
            "owned_by": "string",
            "provider": {
                "name": "string",
                "display_name": "string",
                "is_fundamental": true
            },
            "ccapi": {
                "display_name": "string",
                "type": "string",
                "input_modalities": [
                    "string"
                ],
                "output_modalities": [
                    "string"
                ],
                "capabilities": {
                    "context_length": 0,
                    "max_output_tokens": 0,
                    "streaming": true,
                    "function_calling": true,
                    "system_messages": true
                },
                "pricing": {
                    "input_cost_per_million": 0,
                    "output_cost_per_million": 0,
                    "per_image_cost": 0,
                    "per_second_cost": 0,
                    "currency": "USD"
                },
                "supported_sizes": [
                    "string"
                ],
                "max_duration": 0
            }
        }
    ],
    "total": 0,
    "limit": 0,
    "offset": 0,
    "has_more": true
}
Built with