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 Submit Asset Audit
Submit a batch asset audit request for sd2_manxue images, videos, and audio files.
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
At least one non-empty array must be provided in imageUrls, videoUrls, or audioUrls.
Response Parameters
Status code. 0 indicates success.
Response message. On failure, this usually contains the error reason.
List of successfully submitted assets.
List of failed assets. May be empty.
This API returns the upstream audit provider data object. Additional fields may be included if the provider extends the payload.
curl --request POST \
--url https://zcbservice.aizfw.cn/kyyReactApiServer/asset/sd2Manxue/assetUpload \
--header 'Authorization: Bearer {{key}}' \
--header 'Content-Type: application/json' \
--data '{
"imageUrls": [
"https://example.com/portrait.jpg"
],
"videoUrls": [
"https://example.com/reference.mp4"
],
"audioUrls": [
"https://example.com/bgm.mp3"
]
}'
{
"code": "0",
"msg": null,
"data": {
"items": [
{
"assetType": "Image",
"originalUrl": "https://example.com/portrait.jpg",
"assetId": "asset_img_001",
"status": "submitted"
}
],
"failedItems": []
}
}