Seedream 5.0 Lite

Generate AI images with ByteDance Seedream 5.0 Lite through VicSee API. Web search, visual reasoning, example-based style transfer. 15 credits flat.

Pricing

ModeCreditsPrice (Pro Yearly)Price (Pro Monthly)
Text to Image15$0.090$0.180
Image to Image15$0.090$0.180

Both 2K (Basic) and 4K (High) quality cost the same 15 credits. Credits are deducted only on successful generation.

Endpoint

POST https://vicsee.com/api/v1/generate

See Authentication for API key setup.


Text to Image

Generate images from text descriptions with web-grounded accuracy and visual reasoning.

Request Parameters

ParameterTypeRequiredDescription
modelstringYesseedream-5-lite-text-to-image
input.promptstringYesDescription of the image to generate (max 3000 chars)
input.aspect_ratiostringNo1:1, 16:9, 9:16, 4:3, 3:4, 2:3, 3:2, 21:9 (default: 1:1)
input.qualitystringNobasic (2K) or high (4K) (default: basic)

Example Request

curl -X POST https://vicsee.com/api/v1/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedream-5-lite-text-to-image",
    "input": {
      "prompt": "The Eiffel Tower at golden hour, accurate architectural details, tourists on Champ de Mars, warm sunset lighting, photorealistic",
      "aspect_ratio": "16:9",
      "quality": "high"
    }
  }'

Image to Image

Edit images using natural language with up to 14 reference images. Supports example-based style transfer.

Request Parameters

ParameterTypeRequiredDescription
modelstringYesseedream-5-lite-image-to-image
input.promptstringYesEdit instructions in natural language
input.image_urlsstring[]YesArray of reference image URLs (1-14 images)
input.aspect_ratiostringNo1:1, 16:9, 9:16, 4:3, 3:4, 2:3, 3:2, 21:9 (default: 1:1)
input.qualitystringNobasic (2K) or high (4K) (default: basic)

Example Request

curl -X POST https://vicsee.com/api/v1/generate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedream-5-lite-image-to-image",
    "input": {
      "prompt": "Apply the same autumn color grading and warm tone from the reference to this landscape photo",
      "image_urls": [
        "https://example.com/style-reference.jpg",
        "https://example.com/target-landscape.jpg"
      ],
      "quality": "high"
    }
  }'

Response

Success (200)

{
  "success": true,
  "data": {
    "id": "task_abc123xyz",
    "model": "seedream-5-lite-text-to-image",
    "status": "pending",
    "creditsUsed": 15,
    "creditsRemaining": 985,
    "createdAt": "2026-02-26T12:00:00Z"
  }
}

Poll for completion using Tasks API.

Task Complete

{
  "taskId": "task_abc123xyz",
  "status": "completed",
  "output": {
    "url": "https://cdn.vicsee.com/outputs/image_xyz.png",
    "width": 3072,
    "height": 3072,
    "format": "png"
  }
}

Notes

  • 4K (High) and 2K (Basic) quality cost the same 15 credits
  • Uses real-time web search for accurate real-world subjects
  • Image-to-image supports up to 14 reference images (most on VicSee)
  • Example-based style transfer: show before/after, apply to new image
  • Generation time is approximately 10-30 seconds

  • Seedream 4.5 - 4K resolution with excellent text rendering, 15 credits
  • FLUX 2 - Premium photorealistic image generation up to 2K
  • Nano Banana Pro - HD images up to 4K with best text rendering