Skip to main content

Documentation Index

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

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

Use this endpoint to check the moderation review status of assets you submitted to SD2 Manxue. An asset must show Active status before you can use it with the asset:// reference format in video generation tasks. Base URL: https://zcbservice.aizfw.cn/kyyReactApiServer Endpoint: POST /asset/sd2Manxue/assetStatus

Request Parameters

assetIds
array
required
A list of asset IDs to query. These are the IDs returned in data.items[].assetId from the Submit Assets endpoint.Example: ["asset_img_001", "asset_video_001"]

Response Fields

code
string
Response status code. "0" indicates success; any other value indicates failure.
msg
string
Response message. Returns null on success, or an error description on failure.
data
object
The response data object, returned on success.

Asset Status Values

StatusMeaning
ProcessingThe asset is currently under moderation review and is not yet ready to use.
ActiveThe asset has been approved and is ready to use in generation tasks.
FailedModeration review failed. This asset cannot be used in generation tasks.

Example Request

curl -X POST https://zcbservice.aizfw.cn/kyyReactApiServer/asset/sd2Manxue/assetStatus \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"assetIds": ["asset_img_001", "asset_video_001"]}'
Response with mixed statuses:
{
  "code": "0",
  "msg": null,
  "data": {
    "items": [
      {
        "assetId": "asset_img_001",
        "status": "Active"
      },
      {
        "assetId": "asset_video_001",
        "status": "Processing"
      }
    ],
    "failedItems": []
  }
}
In this example, asset_img_001 has passed review and is ready to use, while asset_video_001 is still under review. Continue polling until all required assets reach Active.
Once an asset shows Active status, reference it in your generation task using asset://{assetId} in the appropriate parameter — referenceImages, referenceVideos, or referenceAudios — depending on the asset type.