Skip to main content
POST
/
api
/
open-api
/
v1
/
seedance
/
sp
/
assets
/
status
SP Batch Query Asset Status
curl --request POST \
  --url https://www.jimmyai.cn/api/open-api/v1/seedance/sp/assets/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "asset_ids": [
    "<string>"
  ]
}
'
{
  "code": 0,
  "msg": "ok",
  "data": {
    "items": [
      {
        "asset_id": "<string>",
        "official_id": "<string>",
        "status": "<string>",
        "name": "<string>",
        "image_url": "<string>",
        "created_at": "<string>"
      }
    ]
  }
}
Batch query processing status for Seedance SP economy assets.

Request body

FieldTypeRequiredDescription
asset_idsstring[]YesList of asset IDs

Example

curl -X POST 'https://www.jimmyai.cn/api/open-api/v1/seedance/sp/assets/status' \
  -H 'Authorization: Bearer sk_xxx' \
  -H 'Content-Type: application/json' \
  -d '{
    "asset_ids": ["asset_abc123", "asset_def456"]
  }'

Response

{
  "code": 0,
  "msg": "ok",
  "data": {
    "items": [
      {
        "asset_id": "asset_abc123",
        "status": "Active",
        "name": "reference-1"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
asset_ids
string[]
required

List of asset IDs

Response

200 - application/json

Queried successfully

code
integer
Example:

0

msg
string
Example:

"ok"

data
object