Skip to main content
Back to API Platform

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.

Video Generation
Img2Vid
Audio
Credit Cost
15 credits
Type
Video

API Endpoint

POST
/api/v1/models/minimax-h3/run

Test 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.

Parameters

Input parameters accepted by this model

ParameterTypeDefault
prompt
required
string
-
image_url
url
-
end_image_url
url
-
reference_images
string
-
aspect_ratio
enum
16:9
duration
integer
5
seed
integer
-

Supported Aspect Ratios

16:9
4:3
1:1
9:16
3:4
21:9

Example Outputs

Real outputs generated by this model

View Details

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.”

0 credits
0

Code Examples

Text → video — copy and paste to get started

bash
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)

json
{
  "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

json
{
  "jobId": "job_abc123...",
  "status": "completed",
  "output": {
    "video": "https://temp.pixeldojo.ai/pixeldojotemp/1705930123-456789.mp4"
  },
  "creditCost": 15,
  "expiresAt": "2026-08-08T19:39:46Z"
}