Skip to main content
Model IDseedream
ProviderByteDance
Cost$0.08/img
Speed~8s
Best forRealistic, artistic styles

Example

curl -X POST https://ninjachat.ai/api/v1/images \
  -H "Authorization: Bearer nj_sk_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "seedream", "prompt": "A sunset over mountains, photorealistic"}'
import requests, os

r = requests.post("https://ninjachat.ai/api/v1/images",
    headers={"Authorization": f"Bearer {os.environ['NINJACHAT_API_KEY']}"},
    json={"model": "seedream", "prompt": "A sunset over mountains, photorealistic"}
)
print(r.json()["images"][0]["url"])

Guides: Image Generation | All Models | Pricing | Error Handling