Pollojourney V8.2
Pollo AI
文生圖圖生圖$0.03 起/ 圖片
PolloJourney V8.2 結合了大膽的美學設計、精細的圖像品質和更聰明的個人化功能,帶來更獨特、更可靠的視覺效果。
輸入
模式
請填寫必填欄位以查看價格
Text To Image · 1k
輸出
閒置| 分辨率 | 類型 | 價格 |
|---|---|---|
| 1K | 圖生圖 | $0.03 |
| 文生圖 | $0.03 | |
| 2K | 圖生圖 | $0.045 |
| 文生圖 | $0.045 |
端點
POST
https://pollo.ai/api/platform/v1/generation/pollo-ai/pollojourney-v8-2-image/image模式
驗證
在 x-api-key 請求標頭中傳遞您的 API 金鑰。
x-api-key: YOUR_API_KEY查看 API 金鑰提交任務
建立模型生成任務。
請求
curl -X POST 'https://pollo.ai/api/platform/v1/generation/pollo-ai/pollojourney-v8-2-image/image' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY' \
-d '{
"input": {
"prompt": "A cinematic shot of a golden retriever running through a field of sunflowers at sunset, warm rim light, shallow depth of field",
"aspectRatio": "1:1",
"resolution": "1k"
}
}'回覆(200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"status": "pending"
}檢查狀態
輪詢任務狀態端點,直到產生完成。
HTTP 請求
GET /api/platform/v1/generation/{taskId}/status HTTP/1.1
Host: pollo.ai
x-api-key: YOUR_API_KEY回覆(200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"credit": 12,
"costUsd": 0.12,
"generations": [
{
"id": "generation_01",
"createdDate": "2026-07-13T07:00:00.000Z",
"updatedDate": "2026-07-13T07:00:12.000Z",
"status": "succeeded",
"failMsg": null,
"url": "https://example.com/output.mp4",
"mediaType": "video"
}
]
}Webhook
(可選)包含 webhookUrl,以便在任務成功或失敗時接收回呼。
可選請求字段
{
"input": {
"prompt": "A cinematic shot of a golden retriever running through a field of sunflowers at sunset, warm rim light, shallow depth of field",
"aspectRatio": "1:1",
"resolution": "1k"
},
"webhookUrl": "https://example.com/webhooks/pollo"
}模式
輸入所選端點和模式的欄位。
| 場地 | 類型 | 必需的 | 描述 |
|---|---|---|---|
| prompt | string | 支持 | Text prompt describing the content to generate. |
| seed | number | 不 | Random seed for reproducible generation. |
| aspectRatio | string | 不 | Output aspect ratio, as width:height (e.g. 16:9). |
| resolution | string | 不 | Output resolution of the generated media (e.g. 720p, 1080p, 2K, 4K). Values are case-insensitive. |
錯誤
常見的公共 API 回應代碼。
- 400
- 輸入或模型約束無效
- 401
- API金鑰缺失或無效
- 403
- API金鑰無存取權限
- 404
- 未找到模型或任務
模型文檔即將推出。