Skip to main content

GET/1.0/flows/public

Lists public flows, newest activity first. No authentication — rate-limited per IP. Pair it with GET /1.0/flows/public/:flowUuid to read one, and POST /1.0/flows/:flowUuid/fork to copy it into your workspace.

Query parameters

limitintegerdefault: "50"

Page size, 1100.

cursorstring

Opaque pagination cursor. Omit for the first page; pass the previous response's nextCursor for the next. Cursor-based paging is stable under concurrent inserts — pages don't shift the way numeric offsets do.

Response (200)

dataobject[]

The page of flows. Each entry: { flowUuid, name, description, forkCount, updatedAt }.

nextCursorstring | null

Pass to the next request's cursor. null on the last page.

curl "https://api.zerowidth.ai/1.0/flows/public?limit=2"
1 min read