Skip to main content
POST
/
api
/
open-api
/
v1
/
seedance
/
sp
/
realperson
/
status
SP Query Real-Person Status
curl --request POST \
  --url https://www.jimmyai.cn/api/open-api/v1/seedance/sp/realperson/status \
  --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>",
    "asset_ref": "<string>",
    "name": "<string>",
    "url": "<string>",
    "created_at": "<string>"
  }
}
Query whitelist processing status for a Seedance SP real-person asset.

Request body

FieldTypeRequiredDescription
asset_idstringYesasset_id from Submit Real-Person Whitelist

Example

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

Response fields

FieldDescription
asset_idAsset ID
statusProcessing / Active / Failed
asset_refReference for video create; available when Active
nameAsset name
urlAsset URL

Status values

StatusMeaning
ProcessingKeep polling
ActiveReady for video generation
FailedProcessing failed

Batch query

To query multiple real-person assets at once: POST /api/open-api/v1/seedance/sp/realperson/batch-status Body: { "asset_ids": ["id1", "id2"] }. Returns an items array with the same shape as the single-query response.

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 returned from whitelist submit

Response

200 - application/json

Queried successfully

code
integer
Example:

0

msg
string
Example:

"ok"

data
object