Un’unica autenticazione, tutti i provider
Una sola chiave RunAPI sblocca l’intero catalogo. Niente account separati, niente rotazione delle chiavi per integrazione.
It looks like you may prefer a different language. Switch anytime.
Usa l'API Seedream tramite RunAPI con model skill, autenticazione unificata e prezzi pay-as-you-go.
curl -X POST https://runapi.ai/api/v1/seedream/edit_image \
-H "Authorization: Bearer $RUNAPI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedream-v4-text-to-image",
"source_image_urls": [
"https://cdn.runapi.ai/public/samples/image.jpg"
],
"prompt": "Create a social media graphic for a coffee shop sale with the text '50% OFF' in bold, warm tones, 4K."
}'
import { SeedreamClient } from "@runapi.ai/seedream";
const client = new SeedreamClient();
const result = await client.editImage.run({
model: "seedream-v4-text-to-image",
source_image_urls: ["https://cdn.runapi.ai/public/samples/image.jpg"],
prompt: "Create a social media graphic for a coffee shop sale with the text '50% OFF' in bold, warm tones, 4K.",
});
<?php
require __DIR__ . "/vendor/autoload.php";
use RunApi\Seedream\SeedreamClient;
$client = new SeedreamClient();
$result = $client->editImage->run([
'model' => 'seedream-v4-text-to-image',
'source_image_urls' => ['https://cdn.runapi.ai/public/samples/image.jpg'],
'prompt' => 'Create a social media graphic for a coffee shop sale with the text \'50% OFF\' in bold, warm tones, 4K.',
]);
require "runapi/seedream"
client = RunApi::Seedream::Client.new
result = client.edit_image.run(
model: "seedream-v4-text-to-image",
source_image_urls: ["https://cdn.runapi.ai/public/samples/image.jpg"],
prompt: "Create a social media graphic for a coffee shop sale with the text '50% OFF' in bold, warm tones, 4K."
)
npx skills add runapi-ai/seedream -g
# Claude Code
claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
# Codex
codex plugin install runapi-mcp@agents
# Cursor / Windsurf / VS Code
npx @runapi.ai/mcp init cursor
Seedream is an image generation and editing model with strong typography rendering and up to 4K output resolution. It supports text-to-image and image editing workflows with fine-grained style control.
| Variante | Fatturazione | Prezzo | |
|---|---|---|---|
| seedream-4.5-edit | call | $0.100 | Visualizza → |
| seedream-4.5-text-to-image | call | $0.100 | Visualizza → |
| seedream-5-lite-edit | call | $0.080 | Visualizza → |
| seedream-5-lite-text-to-image | call | $0.080 | Visualizza → |
| seedream-5-pro-edit | call | $0.170 | Visualizza → |
| seedream-5-pro-layer-decomposition | call | $0.140 | Visualizza → |
| seedream-5-pro-text-to-image | call | $0.110 | Visualizza → |
| seedream-v4-edit | call | $0.080 | Visualizza → |
| seedream-v4-text-to-image | call | $0.080 | Visualizza → |
| Endpoint | Risoluzione | Durata | Prezzo | |
|---|---|---|---|---|
| edit_image | — | — | $0.10 / image |
Prezzi mostrati per seedream-4.5-edit. Le altre varianti mantengono i propri prezzi per endpoint.
Seleziona modello e variante adatti al tipo di output, al livello qualità e alla latenza target.
Imposta la tua chiave RunAPI e installa il model skill nel workspace di codice.
Usa le istruzioni dello skill per aggiungere la feature modello dentro la tua applicazione.
Interroga per task ID, usa streaming dove supportato o gestisci il callback webhook.
Seedream is optimized for typography and style control. Through RunAPI, all Seedream variants share one key and unified billing.
Una sola chiave RunAPI sblocca l’intero catalogo. Niente account separati, niente rotazione delle chiavi per integrazione.
Prezzi per chiamata in USD, fatturati mensilmente. Le generazioni fallite non vengono addebitate.
Schema tipizzati e note di setup sono inclusi nel model skill, così l'implementazione parte dal contratto corretto.
Fino a risoluzione 4K per text-to-image. L'editing immagini può produrre output a 1K, 2K o 4K su v4.
Seedream has strong typography support — it reliably renders text like headlines, logos, and labels within generated images, especially in v4.5 and v5.
Text-to-image genera da zero. La modalità edit accetta una o più immagini sorgente più un'istruzione testuale e applica modifiche mirate guidate dall'istruzione preservando il resto dell'immagine.
Yes — Seedream 5 Lite can perform real-time web search for time-sensitive prompts, generating images informed by current events and trends.
Seedream 4.5 generates in a few seconds. Seedream 5 Lite is faster and ~15% cheaper.
Scegli la variante più economica che soddisfa il tuo livello di qualità. La maggior parte dei team inizia con la variante veloce e passa alla pro per la produzione.