Skip to main content
Model ID
happyhorse-1.1-t2v
Calling method: async

happyhorse-1.1-t2v API Usage Guide

Overview

happyhorse-1.1-t2v generates videos from text prompts with significantly improved motion expressiveness, multi-shot scene scheduling, and native audio synchronization over HappyHorse 1.0. Requests are submitted to the request-queue API and results are retrieved via polling.

Authentication

Authorization: Bearer YOUR_API_KEY

Submit Video Generation Request

Base URL

https://console.gmicloud.ai

Endpoint

POST /api/v1/ie/requestqueue/apikey/requests

Request Format

curl -X POST "https://console.gmicloud.ai/api/v1/ie/requestqueue/apikey/requests" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "happyhorse-1.1-t2v", "payload": {"prompt": "A horse galloping through a golden meadow at sunset, cinematic wide shot", "resolution": "1080P", "duration": 5, "prompt_extend": true, "watermark": false}}'

Request Parameters

ParameterTypeRequiredDescription
promptstringYesText prompt (max 1500 chars)
negative_promptstringNoWhat to avoid in the video
resolutionenumNo720P or 1080P (affects pricing)
durationintNo3–15 seconds (affects pricing)
prompt_extendbooleanNoEnable LLM prompt rewriting
audiobooleanNoEnable native audio generation
watermarkbooleanNoAdd AI Generated watermark
seedintNoReproducibility seed [0, 2147483647]

Response

{
  "request_id": "550e8400-e29b-41d4-a716-446655440000",
  "model": "happyhorse-1.1-t2v",
  "status": "queued"
}