Skip to main content
GET
/
kyyReactApiServer
/
v1
/
result
/
{id}
curl --request GET \
  --url https://zcbservice.aizfw.cn/kyyReactApiServer/v1/result/video_starvideos_1234567890 \
  --header 'Authorization: Bearer {{key}}'
{
  "id": "video_starvideos_1234567890",
  "object": "video",
  "created": 1774836724,
  "model": "starvideos_v3",
  "status": "processing",
  "video_url": null,
  "error": null
}

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.

StarVideos Query Video Task

Use the task ID to query the status and result of a StarVideos video generation task.

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.

Path Parameters

id
string
required
Task ID.
The {id} value comes from the id returned by the create task API.

Response Parameters

id
string
Unique identifier of the video generation task.
object
string
Object type, always video.
created
integer
Task creation timestamp.
model
string
Model name used for generation.
status
string
Task status:
  • queued - Queued
  • processing - Processing
  • completed - Completed
  • failed - Failed
video_url
string
Generated video URL, returned when the task is completed.
actualDuration
number
Actual output duration in seconds, returned when the task is completed.
error
string
Error message, returned when the task is failed.

Status Flow

1

queued

The task has been created and added to the queue.
2

processing

The StarVideos model is actively generating the video.
3

completed

The task completed successfully and the result is available through video_url.

Polling Recommendations

Polling strategy:
  • Recommended polling interval: 30-60 seconds
  • Stop polling when status becomes completed or failed
  • Result URLs may be temporary, so save them promptly
Important:
  • The {id} path parameter must use the id returned by the create API
  • Generated result URLs are usually temporary, so save them promptly
curl --request GET \
  --url https://zcbservice.aizfw.cn/kyyReactApiServer/v1/result/video_starvideos_1234567890 \
  --header 'Authorization: Bearer {{key}}'
{
  "id": "video_starvideos_1234567890",
  "object": "video",
  "created": 1774836724,
  "model": "starvideos_v3",
  "status": "processing",
  "video_url": null,
  "error": null
}