Parametri flessibili
Configura 5 parametri documentati, tra cui aspect_ratio, output_count, rendering_speed, source_image_url, style.
Style remix from reference image + text prompt
curl -X POST https://runapi.ai/api/v1/ideogram_v3/remix_image \
-H "Authorization: Bearer $RUNAPI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "ideogram-v3-remix",
"prompt": "Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background."
}'
import { IdeogramV3Client } from "@runapi.ai/ideogram-v3";
const client = new IdeogramV3Client();
const result = await client.remixImage.run({
model: "ideogram-v3-remix",
prompt: "Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background.",
});
import os
import requests
response = requests.post(
"https://runapi.ai/api/v1/ideogram_v3/remix_image",
headers={"Authorization": f"Bearer {os.environ['RUNAPI_API_KEY']}"},
json={"model":"ideogram-v3-remix","prompt":"Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background."}
)
response.raise_for_status()
<?php
$client = curl_init("https://runapi.ai/api/v1/ideogram_v3/remix_image");
curl_setopt_array($client, [
CURLOPT_HTTPHEADER => ["Authorization: Bearer " . getenv("RUNAPI_API_KEY"), "Content-Type: application/json"],
CURLOPT_POSTFIELDS => json_encode([
'model' => 'ideogram-v3-remix',
'prompt' => 'Create a movie poster for \'The Last Frontier\' with the title in bold serif at the top, a space station in the background.',
])
]);
$response = curl_exec($client);
RunApi client = new RunApi(System.getenv("RUNAPI_API_KEY"));
Task task = client.remixImage().run({"model":"ideogram-v3-remix","prompt":"Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background."});
task.waitForResult();
require "runapi/ideogram_v3"
client = RunApi::IdeogramV3::Client.new
result = client.remix_image.run(
model: "ideogram-v3-remix",
prompt: "Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background."
)
client := runapi.NewClient(os.Getenv("RUNAPI_API_KEY"))
task, err := client.remixImage.Run({"model":"ideogram-v3-remix","prompt":"Create a movie poster for 'The Last Frontier' with the title in bold serif at the top, a space station in the background."})
if err != nil { log.Fatal(err) }
task.Wait()
$ runapi generate \
--model ideogram-v3-remix \
--endpoint remix_image \
--wait
7 versioni disponibili
Scegli un modello e genera in pochi secondi.
Scegli un modello e genera in pochi secondi.
| Provider | Ideogram |
| ID modello | ideogram-v3-remix |
| Modalità | Image |
| Tipi di attività | Asynchronous |
| Endpoint API | /api/v1/ideogram_v3/remix_image |
| Unità di fatturazione | call |
| Parametri di input | aspect_ratio, output_count, rendering_speed, source_image_url, style |
| Rapporti d'aspetto | 1:1, 3:4, 9:16, 4:3, 16:9 |
| Stato del catalogo | Operativo |
Registrati gratuitamente e crea una chiave API per ideogram-v3-remix dalla dashboard.
Invia una richiesta POST a /api/v1/ideogram_v3/remix_image con l’identificatore del modello ideogram-v3-remix e i tuoi parametri.
Interroga il task o segui il callback per recuperare il risultato completato di ideogram-v3-remix.
Configura 5 parametri documentati, tra cui aspect_ratio, output_count, rendering_speed, source_image_url, style.
Espone 1 endpoint pubblici: remix_image.
Misurata in base a call, senza requisito di abbonamento.
styleDescrizione non disponibile. (auto, general, realistic, design)
aspect_ratioDescrizione non disponibile. (1:1, 3:4, 9:16, 4:3, 16:9)
output_countDescrizione non disponibile. (1, 2, 3, 4)
rendering_speedDescrizione non disponibile. (turbo, balanced, quality)
source_image_urlDescrizione non disponibile.
Genera automaticamente foto lifestyle di prodotto per cataloghi e-commerce privi di servizi fotografici in studio.
Progetta rapidamente ambienti e personaggi prima di passare all'art finale.
Genera cover art e illustrazioni uniche per post del blog e articoli su larga scala.
Passa l'ID del modello mostrato nel quickstart.
I limiti per chiave scalano in base al tier di utilizzo. Consulta la pagina prezzi per i limiti attuali.
Sì — la variante è un flag. Puoi cambiarla modificando il parametro model.
Dove lo streaming è disponibile, RunAPI esegue lo streaming end-to-end.
Apri un issue nel repository GitHub pubblico oppure scrivi all’assistenza.
Ti aiutiamo con la configurazione enterprise, le integrazioni e le domande tecniche.
Contattaci