Pollojourney V8.2
Pollo AI
Text to ImageImage to ImageFrom $0.03 / image
PolloJourney V8.2 combines bold aesthetics, polished image quality, and smarter personalization for more distinctive, reliable visuals.
Input
Mode
Complete required fields to see price
Text To Image · 1k
Output
Idle| Resolution | Type | Price |
|---|---|---|
| 1K | Image to Image | $0.03 |
| Text to Image | $0.03 | |
| 2K | Image to Image | $0.045 |
| Text to Image | $0.045 |
Endpoint
POST
https://pollo.ai/api/platform/v1/generation/pollo-ai/pollojourney-v8-2-image/imageMode
Authentication
Pass your API key in the x-api-key request header.
x-api-key: YOUR_API_KEYView API KeysSubmit Task
Create a model generation task.
Request
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"
}
}'Response (200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"status": "pending"
}Check Status
Poll the task status endpoint until generation completes.
HTTP request
GET /api/platform/v1/generation/{taskId}/status HTTP/1.1
Host: pollo.ai
x-api-key: YOUR_API_KEYResponse (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
Optionally include webhookUrl to receive a callback when the task succeeds or fails.
Optional request field
{
"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"
}Schema
Input fields for the selected endpoint and mode.
| Field | Type | Required | Description |
|---|---|---|---|
| prompt | string | Yes | Text prompt describing the content to generate. |
| seed | number | No | Random seed for reproducible generation. |
| aspectRatio | string | No | Output aspect ratio, as width:height (e.g. 16:9). |
| resolution | string | No | Output resolution of the generated media (e.g. 720p, 1080p, 2K, 4K). Values are case-insensitive. |
Errors
Common public API response codes.
- 400
- Invalid input or model constraint
- 401
- Missing or invalid API key
- 403
- API key does not have access
- 404
- Model or task was not found
Model documentation is coming soon.