Pollojourney V8.2
Pollo AI
Tekst til bildeBilde til bildeFra 0,03 $ / bilde
PolloJourney V8.2 kombinerer dristig estetikk, polert bildekvalitet og smartere personalisering for mer særegne og pålitelige bilder.
Inndata
Modus
Fyll ut obligatoriske felt for å se prisen
Text To Image · 1k
Produksjon
Uvirksom| Oppløsning | Type | Pris |
|---|---|---|
| 1K | Bilde til bilde | 0,03 $ |
| Tekst til bilde | 0,03 $ | |
| 2K | Bilde til bilde | 0,045 $ |
| Tekst til bilde | 0,045 $ |
Endepunkt
POST
https://pollo.ai/api/platform/v1/generation/pollo-ai/pollojourney-v8-2-image/imageModus
Autentisering
Send API-nøkkelen din i forespørselsheaderen for x-api-key.
x-api-key: YOUR_API_KEYVis API-nøklerSend inn oppgave
Opprett en modellgenereringsoppgave.
Forespørsel
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"
}
}'Svar (200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"status": "pending"
}Sjekk status
Avspør endepunktet for oppgavestatus til genereringen er fullført.
HTTP-forespørsel
GET /api/platform/v1/generation/{taskId}/status HTTP/1.1
Host: pollo.ai
x-api-key: YOUR_API_KEYSvar (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
Du kan eventuelt inkludere webhookUrl for å motta et tilbakekall når oppgaven lykkes eller mislykkes.
Valgfritt forespørselsfelt
{
"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"
}Skjema
Inndatafelt for det valgte endepunktet og modusen.
| Felt | Type | Obligatorisk | Beskrivelse |
|---|---|---|---|
| prompt | string | Ja | Text prompt describing the content to generate. |
| seed | number | Ingen | Random seed for reproducible generation. |
| aspectRatio | string | Ingen | Output aspect ratio, as width:height (e.g. 16:9). |
| resolution | string | Ingen | Output resolution of the generated media (e.g. 720p, 1080p, 2K, 4K). Values are case-insensitive. |
Feil
Vanlige offentlige API-svarkoder.
- 400
- Ugyldig inndata eller modellbegrensning
- 401
- Manglende eller ugyldig API-nøkkel
- 403
- API-nøkkelen har ikke tilgang
- 404
- Modell eller oppgave ble ikke funnet
Modelldokumentasjon kommer snart.