asset_get
ManagementGet Asset
Get full details for one asset (all fields, including embedding and metadata).
Args:
- asset_id: required
- team_id, project_id: required for OAuth callers
Returns: the full asset record.
Example: "Get this asset" -> asset_id="asset_xxx"
Don't use when: you want to SHOW the asset to the user — use asset_display, which renders images, video, audio and 3D inline.
read-onlyidempotentopen-world
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| asset_id | string | ✓ | Asset ID. |
| 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_id": "asset_img001",
"team_id": "team_abc123",
"project_id": "proj_xyz789"
}Example Response
JSON
{
"asset": {
"id": "asset_img001",
"name": "dragon_sunset.png",
"mimeType": "image/png",
"createdAt": "2026-03-20T10:00:00Z"
}
}Common Use Cases
- Fetch full metadata for a known asset_id
- Retrieve tags, prompt, and model info for a specific asset