Canvas
List project canvas nodes
Returns sanitized visible media nodes on a project canvas. The response omits raw graph documents, Liveblocks internals, raw Convex IDs, and unbounded node data blobs.
get/projects/{projectId}/nodes
Path parameters
projectIdstring required
Project identifier
Example:prj_abc123
Project identifier
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
Response
Canvas nodes returned.
Example response
{
"project_id": "prj_abc123",
"nodes": [
{
"node_id": "node_abc123",
"label": "Logo",
"asset_id": "asset_abc123",
"url": "https://media.flora.ai/output.png"
}
],
"meta": {
"next_cursor": "eyJvZmZzZXQiOjIwfQ"
}
}