Flows  /  List flows

List flows

GET/v1/flows

Returns flows as a paginated list. Each item has the fields below.

Query parameters
site_id
string
Only flows for this site.
limit
integer
How many to return. Default 100, max 1000.
starting_after
string
A cursor (an item id). Returns the next page after it.
Response fields
id
string
Prefixed identifier, e.g. flow_0Dzj….
site_id
string
The site this flow belongs to.
name
string
Up to 255 characters.
status
string
draft (not delivering), published (live), or archived.
trigger_config
object | null
What fires the flow, e.g. { integrationId, pageFilter }.
trigger_name
string | null
Resolved display name of the trigger, e.g. Gravity Forms.
actions_config
array | null
The destinations that receive the conversion.
published_at
timestamp | null
When it was last published. null while in draft.
GET/v1/flows
curl "https://app.converly.io/api/v1/flows?site_id=site_29Et…" \
  -H "Authorization: Bearer sk_live_…"
200 OK
{
  "data": [
    {
      "id": "flow_0Dzj…",
      "site_id": "site_29Et…",
      "name": "Demo bookings",
      "status": "published"
    }
  ],
  "has_more": false,
  "next_cursor": null
}