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

Request body

FieldTypeRequiredDescription
asset_idstringYesAsset ID returned from upload

Example

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

Response fields

FieldDescription
asset_idAsset ID
official_idUpstream official ID
statusActive when ready to use
nameAsset name
image_urlImage URL when applicable
created_atCreation time

Status values

StatusMeaning
ProcessingStill processing
ActiveReady; use asset://{asset_id}
FailedProcessing failed

Authorizations

Authorization
string
header
required

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

Body

application/json
asset_id
string
required

Asset ID

Response

200 - application/json

Queried successfully

code
integer
Example:

0

msg
string
Example:

"ok"

data
object