Flows  /  Get flow

Get flow

GET/v1/flows/{id}

Retrieve a single flow.

Path parameters
id
string · required
The flow id.
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/{id}
curl https://app.converly.io/api/v1/flows/flow_0Dzj… \
  -H "Authorization: Bearer sk_live_…"
200 OK
{
  "id": "flow_0Dzj…",
  "site_id": "site_29Et…",
  "name": "Demo bookings",
  "status": "published",
  "trigger_name": "Gravity Forms",
  "published_at": "2026-06-30T12:05:00.000Z"
}