GetRun by Getcore API Documentation

Docs / image / Seedream 5.0 Pro Image to Image

Seedream 5.0 Pro Image to Image online

High-fidelity image editing with Seedream 5.0 Pro — restyle and rework images while preserving structure and identity.

Rp Mulai Rp570 / image Rp1.210 −52.9% seedream/5-pro-image-to-image model id

1 · Create a task

Kirim permintaan untuk membuat tugas generasi image. Wajib header Idempotency-Key. Saldo direservasi sebesar estimasi; task gagal tidak ditagih.

POSThttps://run.getcore.id/v1/tasks
curl -X POST https://run.getcore.id/v1/tasks \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Idempotency-Key: my-task-001" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedream/5-pro-image-to-image",
    "input": {
      "prompt": "change text \"Lite\" into  \"Pro\"",
      "quality": "basic",
      "image_urls": [
        "https://example.com/input.jpg"
      ],
      "aspect_ratio": "1:1",
      "output_format": "png"
    }
  }'
const res = await fetch('https://run.getcore.id/v1/tasks', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer YOUR_API_KEY',
    'Idempotency-Key': 'my-task-001',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    "model": "seedream/5-pro-image-to-image",
    "input": {
      "prompt": "change text \"Lite\" into  \"Pro\"",
      "quality": "basic",
      "image_urls": [
        "https://example.com/input.jpg"
      ],
      "aspect_ratio": "1:1",
      "output_format": "png"
    }
  }),
});
const task = await res.json();
import requests

res = requests.post(
    "https://run.getcore.id/v1/tasks",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Idempotency-Key": "my-task-001",
    },
    json={
      "model": "seedream/5-pro-image-to-image",
      "input": {
        "prompt": "change text \"Lite\" into  \"Pro\"",
        "quality": "basic",
        "image_urls": [
          "https://example.com/input.jpg"
        ],
        "aspect_ratio": "1:1",
        "output_format": "png"
      }
    },
)
task = res.json()

Input parameters

NameTypeRequiredDescriptionExample
prompt string Yes A text description of the image you want to generate (max 5000 chars) change text "Lite" into "Pro&q
quality string Yes Basic outputs 1K images, while High outputs 2K images.
Opsi: basic high
basic
image_urls array Yes Upload an image file to use as input for the API (array of file URLs) https://example.com/input.jpg
aspect_ratio string Yes Width-height ratio of the image, determining its visual form.
Opsi: 1:1 4:3 3:4 16:9 9:16 2:3 3:2 21:9
1:1
nsfw_checker boolean No A configurable parameter. Defaults to true in the Playground. true
output_format string No Format of the output image
Opsi: png jpeg
png

2 · Poll the result

Ambil status tugas hingga selesai — poll tiap 2–5 detik.

GEThttps://run.getcore.id/v1/tasks/{task_id}

Respons saat sukses:

{
  "id": "task_9f2c…",
  "status": "succeeded",
  "model": "seedream/5-pro-image-to-image",
  "price": {
    "currency": "IDR",
    "estimated": 570,
    "reserved": 570,
    "final": 570
  },
  "output": {
    "urls": [
      "https://storage.getcore.id/outputs/task_9f2c…/0.png"
    ],
    "expires_at": "(7 hari setelah selesai)"
  }
}

Status values

StatusKeterangan
queuedTugas sedang diantrikan.
processingSedang diproses.
succeededBerhasil.
failedGagal — lihat error detail, tidak ditagih.
Output bertipe image/png, dilayani dari CDN kami dan berlaku 7 hari — salin ke penyimpananmu sendiri untuk jangka panjang.

Best practices

Bila generation gagal, task berstatus failed dengan error.code ternormalisasi (mis. moderation_blocked, upstream_error) dan price.final = 0 — saldo dikembalikan otomatis. Daftar lengkap kode error ada di Error handling. Selalu kirim Idempotency-Key unik per tugas agar retry aman.

Coba tanpa kode: jalankan model ini langsung dari Playground atau lihat di API Market.

On this page
1 · Create a task Input parameters 2 · Poll the result Status values Best practices
Pricing summary
Seedream 5.0 Pro Image to Image
Mulai Rp570 / image
  • Harga jelas, pembayaran mudah.
  • Transparan, tanpa biaya tersembunyi.
  • Hemat 53% dibanding harga pembanding.
Try in Playground ↗

Eksperimen model ini langsung di Playground untuk hasil instan.

Model details
Model IDseedream/5-pro-image-to-image
Modalityimage
Output typeimage/png
API versionv1
Need help?

Lihat daftar error umum di Error handling atau hubungi support@getcore.id.