List image assets
Returns the org's image asset library — the images discovered in a
connected git repo and promoted on deploy — ordered by source path.
url is the public CDN URL, or empty until an Edge stack is
provisioned. Read-only: assets are managed via git, not this API.
Query parameters
limit integer optional Page size (1–200). Default 50.
cursor string optional Opaque cursor returned from the previous page.
tag array optional Filter to entities carrying a tag with this full path name (repeatable; union/OR across values — the Gmail default). Pass untagged=true instead to return only entities with no tags. Applied before pagination.
Responses
Errors follow the RFC 7807 problem format — see the error reference.
data array<object> required Each entry in data:
id string<uuid> required source_path string required Repo-relative logical path of the image in the connected git repo.
url string required Public CDN URL for the image, or "" when no Edge stack is provisioned yet.
content_hash string required Content-addressed hash of the image bytes.
content_type string required MIME type, e.g. image/png.
size_bytes integer<int64> required width integer required Pixel width, or 0 when unknown (e.g. SVG).
height integer required Pixel height, or 0 when unknown (e.g. SVG).
last_synced_at string<date-time> optional Time of the last git sync; omitted when never synced.
created_at string<date-time> required tags array<object> optional Org-side tags/folders applied to this asset (managed via the dashboard; assets are read-only but freely taggable). Filter the collection with ?tag=.
Each entry in tags:
id string<uuid> required name string required Full folder path (e.g. Marketing/Newsletters).
key string required Normalized slug handle of the name.
color string optional Chip colour token (chart-1..chart-5), or empty.
description string optional created_at string<date-time> required updated_at string<date-time> required pagination object required Fields of pagination:
has_more boolean required next_cursor string | null optional code is internal_error. The
request_id field can be quoted to SendOps support to investigate.
application/problem+json