/api/v1/playground/createAsset 提交资产转存任务后,API 将返回一个任务 id。id 查询资产的转存处理状态,并获取最终的存储结果,包括资产 URL 或失败原因信息。Processing:资产仍在处理中Active:资产已成 功处理,可供使用Failed:资产处理失败curl --location --request GET 'https://api.kie.ai/api/v1/playground/getAsset' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"assetId": "v2:8a1f0f4f1234567890abcdef12345678"
}'{
"status": "Active",
"url": "http://example.com",
"errorMsg": "string"
}