DeepInfra raises $107M Series B to scale the inference cloud — read the announcement

ByteDance logo

ByteDance/

Seedream-5.0-Pro

Partner

$0.0495 - $0.099 / image

*

ByteDance's flagship image model, with precise interactive editing, stronger multi-reference fusion and notably accurate text rendering at up to 2K.

Public
ByteDance/Seedream-5.0-Pro cover image
demo

HTTP/cURL API

You can use cURL or any other http client to run inferences:

curl -X POST \
    -d '{"prompt": "Interstellar travel, a black hole, from which a nearly shattered vintage train bursts forth, cinematic blockbuster, contrasting colors, ray tracing, deep blue."}'  \
    -H "Authorization: bearer $DEEPINFRA_TOKEN"  \
    -H 'Content-Type: application/json'  \
    'https://api.deepinfra.com/v1/inference/ByteDance/Seedream-5.0-Pro'
copy

which will give you back something similar to:

{
  "images": [
    "https://example.com/generated.png"
  ],
  "nsfw_content_detected": [
    false
  ],
  "seed": 42,
  "request_id": null,
  "inference_status": {
    "status": "unknown",
    "runtime_ms": 0,
    "cost": 0.0,
    "tokens_generated": 0,
    "tokens_input": 0,
    "output_length": 0
  }
}

copy

Input fields

Input Schema

Output Schema