MiniMax H3 API
MiniMax H3 — text-to-video, image-to-video, and reference-to-video in one model. 2K output, 5-15s, native synced audio. Integrate this model via REST with endpoint docs, parameters, and code examples.
Get API Key
Create auth keys for apps and agents
See Usage
Track requests, credits, and logs
Buy Credits
Top up prepaid API capacity
API Endpoint
/api/v1/models/minimax-h3/runTest This Model
Run a real request through the API pipeline and inspect the exact input and output your integration will handle. Uses your credits like any API call; failed runs are refunded automatically.
LLM.txt
For AI assistants
Copy this model's documentation into Claude, GPT, or any AI for instant integration help.
/llm/minimax-h3.txtOpenAPI Spec
Swagger compatible
Import into Postman, Swagger UI, or generate client SDKs in any language.
/api/openapiParameters
Input parameters accepted by this model
| Parameter | Type | Default |
|---|---|---|
promptrequired | string | - |
image_url | url | - |
end_image_url | url | - |
reference_images | string | - |
aspect_ratio | enum | 16:9 |
duration | integer | 5 |
seed | integer | - |
Supported Aspect Ratios
Example Outputs
Real outputs generated by this model
Joey and Chandler sit side by side on the couch with coffee cups. Joey turns to Chandler with a completely sincere, concerned expression. DIALOGUE: JOEY: “Could AI replace us?” Chandler slowly looks up from his coffee. Pauses. Looks Joey dead in the eye. CHANDLER: “Joey, AI cannot replace you. Nothing can replace you. Well, except Pixel Dojo.” Joey nods slowly. Visibly relieved. Processing. JOEY: “Because It's too good?” Chandler stares at him. Long beat. He looks down at his coffee, then back up. CHANDLER: “…That's right. It just is.” STYLE: Warm 90s sitcom aesthetic, steady handheld feel, natural performances, characters in casual clothing. Joey played completely straight — zero irony. Chandler delivers every line with exhausted deadpan sarcasm. Hold on Chandler’s face after the final line for a full beat before cut.”
Code Examples
Text → video — copy and paste to get started
curl -X POST "https://pixeldojo.ai/api/v1/models/minimax-h3/run" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A lighthouse keeper climbs the spiral stairs at dawn, waves crashing below",
"duration": 5,
"aspect_ratio": "16:9"
}'Response Format
Submit Response (202 Accepted)
{
"jobId": "job_abc123...",
"status": "pending",
"statusUrl": "https://pixeldojo.ai/api/v1/jobs/job_abc123...",
"creditCost": 15,
"creditsRemaining": 95,
"expiresAt": "2026-08-08T19:39:46Z"
}Completed Response
{
"jobId": "job_abc123...",
"status": "completed",
"output": {
"video": "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.mp4"
},
"creditCost": 15,
"expiresAt": "2026-08-08T19:39:46Z"
}