assets_get_bulk
ManagementGet 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
| Name | Type | Required | Description |
|---|---|---|---|
| asset_ids | array | ✓ | Asset IDs to fetch. |
| team_id | string | — | Team ID. Required if user belongs to multiple teams. |
| project_id | string | — | Project ID to scope the operation to. |
| response_format | enum(json | markdown) | json | Output 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