POST
https://octopusx.ai
/
v1
/
seedance
/
asset
/
GetAsset
Query Asset
curl --request POST \
  --url https://octopusx.ai/v1/seedance/asset/GetAsset \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "task_id": "<string>"
}
'
{
  "state": 1,
  "data": {
    "Id": "asset-xxx",
    "Name": "child",
    "URL": "https://example.com/processed.webp",
    "AssetType": "Image",
    "GroupId": "group-20260415111540-w9pkb",
    "Status": "Active",
    "CreateTime": "2026-04-15T11:15:40Z",
    "UpdateTime": "2026-04-15T11:16:02Z",
    "Error": null
  },
  "error": null
}

Query Asset

Query asset processing progress and details based on the task_id returned by Upload Asset.

Method and Path

POST /v1/seedance/asset/GetAsset

Request Example

curl -X POST https://octopusx.ai/v1/seedance/asset/GetAsset \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{
    "task_id": "task_xxxx"
  }'

Response Example

{
  "state": 1,
  "data": {
    "Id": "asset-xxx",
    "Name": "child",
    "URL": "https://example.com/processed.webp",
    "AssetType": "Image",
    "GroupId": "group-20260415111540-w9pkb",
    "Status": "Active",
    "CreateTime": "2026-04-15T11:15:40Z",
    "UpdateTime": "2026-04-15T11:16:02Z",
    "Error": null
  },
  "error": null
}

Authentication

Authorization: Bearer YOUR_API_KEY

Body

task_id
string
required
The task ID returned when uploading the asset.

Response

data.Id
string
Asset ID.
data.Name
string
Asset name.
data.URL
string
Asset URL.
data.AssetType
string
Asset type: Image, Video, Audio.
data.GroupId
string
ID of the asset group it belongs to.
data.Status
string
Asset status: Processing (processing), Active (available for video generation), Failed (failed).
data.Error
string | null
Error message when the asset fails.