assets_get_bulk

Management

Get Assets (Bulk)

Fetch full details for multiple assets in a single request. Args: - asset_ids: required — array of asset IDs to fetch - team_id, project_id: required for OAuth callers Returns: full asset records for each requested ID. Example: "Get details on these assets" -> asset_ids=["asset_1", "asset_2"]
read-onlyidempotentopen-world

Parameters

NameTypeRequiredDescription
asset_idsarrayAsset IDs to fetch.
team_idstringTeam ID. Required if user belongs to multiple teams.
project_idstringProject ID to scope the operation to.
response_formatenum(json | markdown)jsonOutput format: 'json' for structured data, 'markdown' for human-readable text.

Example Request

JSON
{
  "asset_ids": [
    "asset_img001",
    "asset_img002"
  ],
  "team_id": "team_abc123",
  "project_id": "proj_xyz789"
}

Example Response

JSON
{
  "assets": [
    {
      "id": "asset_img001",
      "name": "dragon_sunset.png"
    },
    {
      "id": "asset_img002",
      "name": "dragon_cave.png"
    }
  ]
}

Common Use Cases

  • Bulk-fetch multiple assets by ID after a batch generation run