Skip to main content
POST
/
api
/
open-api
/
v1
/
seedance
/
assets
/
status
Query Seedance Assets Status
curl --request POST \
  --url https://www.jimmyai.cn/api/open-api/v1/seedance/assets/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "asset_ids": [
    "<string>"
  ]
}
'
{
  "code": "20000",
  "msg": "ok",
  "data": {
    "items": [
      {
        "asset_id": "<string>",
        "status": "<string>"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.jimmyai.cn/llms.txt

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

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 to query

Response

200 - application/json

Queried successfully

code
string
Example:

"20000"

msg
string
Example:

"ok"

data
object