Minimax H3
Minimax
Referenz-zu-VideoText-zu-Video-KIBild-zu-VideoAb 0,07 $ /S
Minimax H3 erstellt Sequenzen mit mehreren Einstellungen, nativem synchronisiertem Audio, präziser Kamerasteuerung und fortschrittlicher Keyframe-Bearbeitung für konsistente Erzählstränge.
Eingang
Modus
Füllen Sie die Pflichtfelder aus, um den Preis zu sehen.
Text To Video · 2k · 5s
Ausgabe
Leerlauf| Modus | Dauer | Auflösung | Typ | Preis |
|---|---|---|---|---|
| — | output second | 768p | Bild-zu-Video | 0,07 $ / s |
| Referenz-zu-Video | 0,07 $ / s | |||
| Text-zu-Video-KI | 0,07 $ / s | |||
| 2k | Bild-zu-Video | 0,12 $ / s | ||
| Referenz-zu-Video | 0,12 $ / s | |||
| Text-zu-Video-KI | 0,12 $ / s | |||
| with video ref | (output + input video) second | 768p | Referenz-zu-Video | 0,07 $ / s |
| 2k | Referenz-zu-Video | 0,12 $ / s |
Endpunkt
POST
https://pollo.ai/api/platform/v1/generation/minimax/minimax-h3/videoModus
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/minimax/minimax-h3/video' \
-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",
"resolution": "2k",
"duration": 5,
"aspectRatio": "auto"
}
}'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",
"resolution": "2k",
"duration": 5,
"aspectRatio": "auto"
},
"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. |
| resolution | string | NEIN | Output resolution of the generated media (e.g. 720p, 1080p). |
| duration | integer | NEIN | The duration of the generated video, in seconds. |
| aspectRatio | string | NEIN | Output aspect ratio, as width:height (e.g. 16:9). |
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.
Laden…