Assets
List assets
Returns assets visible to the authenticated public API key. Filter by workspace, project canvas, search query, cursor, and limit without exposing raw file bytes or internal graph data.
get/assets
Query parameters
limitinteger
Maximum number of results to return
Maximum number of results to return
cursorstring
Opaque cursor for fetching the next page
Example:eyJvZmZzZXQiOjIwfQ
Opaque cursor for fetching the next page
querystring
Search query
Example:logo
Search query
workspace_idstring
Workspace identifier
Example:ws_abc123
Workspace identifier
project_idstring
Project identifier
Example:prj_abc123
Project identifier
Response
Assets returned.
Example response
{
"assets": [
{
"asset_id": "asset_abc123",
"workspace_id": "ws_abc123",
"node_id": "node_abc123",
"project_id": "prj_abc123"
}
],
"meta": {
"next_cursor": "eyJvZmZzZXQiOjIwfQ"
}
}