Skip to main content
POST
/
kyyReactApiServer
/
v1
/
sd2_manxue
/
videos
curl --request POST \
  --url https://zcbservice.aizfw.cn/kyyReactApiServer/v1/sd2_manxue/videos \
  --header 'Authorization: Bearer {{key}}' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "sd2_manxue_1080p",
    "prompt": "A girl jogging through a rainy neon-lit street with a cinematic push-in shot",
    "duration": 5,
    "ratio": "16:9"
  }'
{
  "code": "0",
  "msg": null,
  "data": {
    "projectId": "proj_sd2manxue_1234567890"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.globalaiopc.com/llms.txt

Use this file to discover all available pages before exploring further.

Sd2 Manxue Create Video Task

Create an sd2_manxue video generation task. This API supports text-only generation, first frame mode, first/last frame mode, and mixed image, video, and audio references.

Authentication

All requests require a Bearer token in the request header:
Authorization: Bearer {{key}}

Base URL

https://zcbservice.aizfw.cn/kyyReactApiServer
baseUrl is the shared prefix for all public APIs. The api field in the current page frontmatter shows the full endpoint. Use this baseUrl as the common prefix when reading or composing request paths.

Request Parameters

prompt
string
required
Video generation prompt.
model
string
required
Model name used to determine the output resolution.Available values:
  • sd2_manxue_720p
  • sd2_manxue_1080p
  • sd2_manxue_2k
  • sd2_manxue_4k
duration
integer
Video duration in seconds. Defaults to 5. Supported range: 4-15.
ratio
string
Output aspect ratio. Defaults to 16:9.Supported values:
  • 21:9
  • 16:9
  • 4:3
  • 1:1
  • 3:4
  • 9:16
image
string
First frame image URL.Rules:
  • Can be used alone for first frame mode
  • When combined with lastFrameImage, it becomes first/last frame mode
  • Cannot be used together with referenceImages, referenceVideos, or referenceAudios
lastFrameImage
string
Last frame image URL.
Must be used together with image
referenceImages
array
Reference image URL list.Rules:
  • Up to 9 images
  • Cannot be used together with image or lastFrameImage
referenceVideos
array
Reference video URL list.Rules:
  • Up to 3 videos
  • Total duration must not exceed 15 seconds
  • Total size must not exceed 500MB
  • Cannot be used together with image or lastFrameImage
referenceAudios
array
Reference audio URL list.Rules:
  • Up to 3 audio files
  • Total duration must not exceed 15 seconds
  • Total size must not exceed 500MB
  • Cannot be used together with image or lastFrameImage

Response Parameters

code
string
Status code. 0 indicates success.
msg
string
Response message. On failure, this usually contains the error reason.
data.projectId
string
System task ID used for follow-up result queries.

Parameter Rules

  • lastFrameImage cannot be used alone and must be paired with image
  • referenceImages, referenceVideos, and referenceAudios can be used separately or together
  • Any reference* field is mutually exclusive with image / lastFrameImage
curl --request POST \
  --url https://zcbservice.aizfw.cn/kyyReactApiServer/v1/sd2_manxue/videos \
  --header 'Authorization: Bearer {{key}}' \
  --header 'Content-Type: application/json' \
  --data '{
    "model": "sd2_manxue_1080p",
    "prompt": "A girl jogging through a rainy neon-lit street with a cinematic push-in shot",
    "duration": 5,
    "ratio": "16:9"
  }'
{
  "code": "0",
  "msg": null,
  "data": {
    "projectId": "proj_sd2manxue_1234567890"
  }
}