Routescope APIRoutescope API
Model API DocumentationVideo Models

Get Asset Group Details

Query a specific asset group and its asset list.

Query the details of a specific asset group and the assets inside it. The server first validates whether groupId belongs to the current user.

GET
/v1/api/video-studio/assets/ecloud/{groupId}
curl -X GET "https://api.routescope.ai/v1/api/video-studio/assets/ecloud/string"
{
  "data": {
    "group": {
      "groupId": "group_xxx",
      "groupName": "Product asset group",
      "displayName": "Product asset group",
      "groupType": "AIGC"
    },
    "assets": [
      {
        "fileName": "image.png",
        "assetName": "image.png",
        "assetType": "Image",
        "assetId": "asset_xxx",
        "assetUrl": "https://example.com/path/to/asset.png",
        "coverUrl": "https://example.com/path/to/asset.png",
        "status": "SUCCESS",
        "createdTime": "2026-06-30T00:00:00Z"
      }
    ],
    "totalSize": 1
  },
  "error": {
    "code": "not_found",
    "message": "asset group not found"
  },
  "request_id": "req_xxx"
}
{
  "data": null,
  "error": {
    "code": "not_found",
    "message": "asset group not found"
  },
  "request_id": "req_xxx"
}

Authorization

BearerAuth

AuthorizationBearer <token>

Use this project's gateway token: Authorization: Bearer <API_TOKEN>. This is not the upstream asset-library API key.

In: header

Path Parameters

groupId*string

Asset group ID returned by the upstream service. This project validates the local ownership relation for this groupId against the current user.

Response Body

application/json

application/json

Last updated on