1. Image
COCO API
  • Dreamina Seedance 2.0 series prompt guide
  • Model
    • List model video
      GET
    • List model image
      GET
    • List model audio
      GET
  • Video
    • Create video
      POST
    • Get video detail
      GET
  • Image
    • Create image
      POST
  • Schemas
    • ListModelVideoResponse
    • ListModelImageResponse
    • ListModelAudioResponse
    • CreateVideo
    • CreateVideoResponse
    • VideoDetailResponse
    • CreateImage
    • CreateImageResponse
    • ImageDetailResponse
  1. Image

Create image

Developing
POST
/ai-image

Request

Authorization
API Key
Add parameter in header
apiKey
Example:
apiKey: ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/ai-image' \
--header 'apiKey: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
    "partnerModelId": "ep-20260824222944-wmrzt",
    "prompt": "A cute cat sitting on a beach at sunset, cinematic lighting, 8k resolution",
    "resolution": "2K",
    "ratio": "16:9",
    "numOfGenerate": 1,
    "outputFormat": "png",
    "name": "Test Seedream Lite",
    "webHookUrl": "https://unroving-ablush-mia.ngrok-free.dev"
}'
Response Response Example
{
    "setting": {
        "partnerModelId": "ep-20260824222944-wmrzt",
        "prompt": "A cute cat sitting on a beach at sunset, cinematic lighting, 8k resolution",
        "resolution": "2K",
        "ratio": "16:9",
        "numOfGenerate": 1,
        "outputFormat": "png",
        "name": "Test Seedream Lite",
        "webHookUrl": "https://unroving-ablush-mia.ngrok-free.dev",
        "files": []
    },
    "id": 61,
    "name": "Test Seedream Lite",
    "createdById": 1,
    "companyId": 1,
    "createdDate": "2026-08-28T12:40:10.584Z",
    "partnerId": 44,
    "status": 0,
    "publicId": "c494f558-78fb-463d-a05d-e0395277bc10",
    "source": 1,
    "webHookUrl": "https://unroving-ablush-mia.ngrok-free.dev"
}
Modified at 2026-08-28 12:59:56
Previous
Get video detail
Next
ListModelVideoResponse
Built with