Rivya AI 文件
模型 API 接入文件

Qwen Image 3.0 API 接入文件

透過 Rivya Public API v1 呼叫 Qwen Image 3.0,包含模型 ID qwen-image-3、輸入類型、參數、Files API 規則、點數和回應範例。

API 可呼叫文字或 URL 可用;參考模式使用 Files API圖片
API 模型 ID

qwen-image-3

輸入類型

text, file

Files API

參考素材模式需要

基礎點數

per_output_plus_input_image · output=4.8 · input_image=0.5 · ⌈total⌉

能力類型

圖片

計費方式

FIXED

Prompt 上限

800 字元

請求欄位

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

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

模型參數

Key類型必填預設值範圍選項說明
resolutionselect1K-1K, 2K解析度
image_sizeselect16:9-1:1, 3:2, 2:3, 4:3, 3:4, 16:9, 9:16, 21:9圖片尺寸
output_formatselectpng-png, jpeg輸出格式
prompt_extendselecttrue-true, false讓模型在生成前改寫簡單的正向提示詞;若要更精準控制措辭,則可關閉。
nsfw_checkerselectfalse-false, true啟用模型的選用內容過濾功能。任何自動過濾機制都無法保證完整涵蓋所有情況。
negative_prompttext---負面提示詞
seednumber1min 0 / max 2147483647 / step 1-留空時,每次都會產生新的隨機結果。重複使用同一個整數,會更容易重現或微調上一個結果。只有在提示詞和其他關鍵設定也保持相近時,結果才會更接近,但不保證 1:1 完全一致。

上傳策略

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

參考素材規則

參考圖片: 最多上傳三張 JPEG、PNG、WebP、BMP、GIF 或 TIFF 圖片,每張不超過 10 MB。

最大文件數

3

支援文件類型

image

時長 Token

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

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

最小請求

{
  "model": "qwen-image-3",
  "prompt": "A clean editorial product image on a soft studio background",
  "params": {
    "resolution": "1K",
    "image_size": "16:9",
    "output_format": "png",
    "prompt_extend": "true",
    "nsfw_checker": "false",
    "negative_prompt": "選填:要避免的元素或失敗情況,最多 5,000 個字元。",
    "seed": 1
  }
}

參考文件請求

{
  "model": "qwen-image-3",
  "prompt": "A clean editorial product image on a soft studio background",
  "params": {
    "resolution": "1K",
    "image_size": "16:9",
    "output_format": "png",
    "prompt_extend": "true",
    "nsfw_checker": "false",
    "negative_prompt": "選填:要避免的元素或失敗情況,最多 5,000 個字元。",
    "seed": 1,
    "referenceMediaItems": [
      {
        "url": "https://cdn.example.com/reference-image.png",
        "kind": "image",
        "name": "reference-image.png",
        "mimeType": "image/png",
        "width": 1024,
        "height": 1024,
        "sizeBytes": 1048576,
        "imageDimensionsToken": "image_dimensions_token_from_original_files_api_upload_response"
      }
    ]
  }
}

建立回應

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

{
  "id": "task_qwen_image_3_example",
  "status": "queued",
  "model": "qwen-image-3",
  "reserved_credits": 5,
  "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 上傳參考素材。