Pollojourney V8.2
Pollo AI
Text-zu-BildBild-zu-BildAb 0,03 $ /Bild
PolloJourney V8.2 vereint kühne Ästhetik, ausgefeilte Bildqualität und intelligentere Personalisierung für unverwechselbarere und zuverlässigere visuelle Darstellungen.
Eingang
Modus
Füllen Sie die Pflichtfelder aus, um den Preis zu sehen.
Text To Image · 1k
Ausgabe
Leerlauf| Auflösung | Typ | Preis |
|---|---|---|
| 1K | Bild-zu-Bild | 0,03 $ |
| Text-zu-Bild | 0,03 $ | |
| 2K | Bild-zu-Bild | 0,045 $ |
| Text-zu-Bild | 0,045 $ |
Endpunkt
POST
https://pollo.ai/api/platform/v1/generation/pollo-ai/pollojourney-v8-2-image/imageModus
Authentifizierung
Übergeben Sie Ihren API-Schlüssel im x-api-key-Anfrageheader.
x-api-key: YOUR_API_KEYAPI-Schlüssel anzeigenAufgabe einreichen
Erstellen Sie eine Modellgenerierungsaufgabe.
Anfrage
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"
}
}'Antwort (200)
{
"taskId": "task_01HZ7Q2V8J3E4T6Y9K0M1N2P3",
"status": "pending"
}Status prüfen
Fragen Sie den Aufgabenstatus-Endpunkt so lange ab, bis die Generierung abgeschlossen ist.
HTTP-Anfrage
GET /api/platform/v1/generation/{taskId}/status HTTP/1.1
Host: pollo.ai
x-api-key: YOUR_API_KEYAntwort (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
Optional kann webhookUrl angegeben werden, um eine Rückruffunktion zu erhalten, wenn die Aufgabe erfolgreich war oder fehlschlug.
Optionales Anfragefeld
{
"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
Eingabefelder für den ausgewählten Endpunkt und Modus.
| Feld | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| prompt | string | Ja | Text prompt describing the content to generate. |
| seed | number | NEIN | Random seed for reproducible generation. |
| aspectRatio | string | NEIN | Output aspect ratio, as width:height (e.g. 16:9). |
| resolution | string | NEIN | Output resolution of the generated media (e.g. 720p, 1080p, 2K, 4K). Values are case-insensitive. |
Fehler
Gängige öffentliche API-Antwortcodes.
- 400
- Ungültige Eingabe oder Modellbeschränkung
- 401
- Fehlender oder ungültiger API-Schlüssel
- 403
- Der API-Schlüssel hat keinen Zugriff
- 404
- Es wurde kein Modell oder keine Aufgabe gefunden.
Die Modelldokumentation folgt in Kürze.