Rivya AI 文件
模型 API 接入文件

Ideogram V3 Remix API 接入文件

透過 Rivya Public API v1 呼叫 Ideogram V3 Remix,包含模型 ID ideogram-v3-remix、輸入類型、參數、Files API 規則、點數和回應範例。

API 可呼叫可用狀態圖片
API 模型 ID

ideogram-v3-remix

輸入類型

file

Files API

參考素材模式需要

基礎點數

per_image · TURBO=3.5 · BALANCED=7 · QUALITY=10 · ⌈total⌉

能力類型

圖片

計費方式

FIXED

Prompt 上限

5000 字元

請求欄位

模型 ID 放在頂層欄位。模型專屬控制項放入 params。

Key類型必填預設值說明
modelstringideogram-v3-remix使用 ideogram-v3-remix 作為 API 模型 ID。
promptstring-這個模型最多 5000 個字元。
paramsobject-模型專屬參數物件。可用 keys 請見下方參數表。
client_request_idstring-可選的用戶端請求 ID,方便你在自己的系統中追蹤請求。

模型參數

Key類型必填預設值範圍選項說明
rendering_speedselectBALANCED-TURBO, BALANCED, QUALITY平衡速度、成本和細節。Turbo 最快也最便宜,Quality 細節最多也最昂貴,Balanced 是預設的中間選項。
styleselectAUTO-AUTO, GENERAL, REALISTIC, DESIGN風格
expand_promptselecttrue-true, falseIdeogram 的提示詞擴展開關。開啟時可協助模型補足你的描述;當你想嚴格控制提示詞時,關閉會更合適。
image_sizeselectsquare_hd-square, square_hd, portrait_4_3, portrait_16_9, landscape_4_3, landscape_16_9圖片尺寸
num_imagesselect1-1, 2, 3, 4可選 1–4 張輸出。總價按單張價格乘以所選張數計算,並向上取整為整數點數。
seednumber---留空時,每次都會產生新的隨機結果。重複使用同一個整數,會更容易重現或微調上一個結果。只有在提示詞和其他關鍵設定也保持相近時,結果才會更接近,但不保證 1:1 完全一致。
strengthnumber0.8min 0.01 / max 1-控制來源圖片塑造結果的強度。數值越高越接近原始結構,數值越低則允許更多偏離。
negative_prompttext---負向提示詞

上傳策略

先上傳參考文件,再把回傳的 URL 和 durationToken 放入 params.referenceMediaItems。

參考素材規則

參考圖片: 為這個專案上傳剛好 1 個圖片檔案。

最大文件數

1

支援文件類型

image

時長 Token

影片和音訊參考素材需要時長驗證時,應攜帶 /api/v1/files 回傳的 durationToken。

kind大小上限MIME 類型
image10 MBimage/jpeg, image/png, image/webp

最小請求

{
  "model": "ideogram-v3-remix",
  "params": {
    "rendering_speed": "BALANCED",
    "style": "AUTO",
    "expand_prompt": "true",
    "image_size": "square_hd",
    "num_images": "1",
    "seed": 1,
    "strength": 0.8,
    "negative_prompt": "可選的避免內容"
  }
}

參考文件請求

{
  "model": "ideogram-v3-remix",
  "params": {
    "rendering_speed": "BALANCED",
    "style": "AUTO",
    "expand_prompt": "true",
    "image_size": "square_hd",
    "num_images": "1",
    "seed": 1,
    "strength": 0.8,
    "negative_prompt": "可選的避免內容",
    "referenceMediaItems": [
      {
        "url": "https://cdn.example.com/reference-image.png",
        "kind": "image",
        "name": "reference-image.png",
        "mimeType": "image/png"
      }
    ]
  }
}

建立回應

建立 endpoint 會回傳公開 task id。繼續輪詢狀態 endpoint,直到任務成功或失敗。

{
  "id": "task_ideogram_v3_remix_example",
  "status": "queued",
  "model": "ideogram-v3-remix",
  "reserved_credits": 7,
  "final_credits": 0,
  "settlement_status": "RESERVED",
  "created_at": "2026-05-11T00:00:00.000Z",
  "updated_at": "2026-05-11T00:00:00.000Z",
  "result": null,
  "error": null
}

常見錯誤

validation_failed, insufficient_credits, idempotency_conflict, rate_limited, not_found

部分模式需要透過 Files API 上傳參考素材。