Skip to main content
GET
/
flows
/
{org}
/
{flow_name}
Get flow
curl --request GET \
  --url https://app.kosli.com/api/v2/flows/{org}/{flow_name} \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "description": "<string>",
  "visibility": "public",
  "org": "<string>",
  "template": "<unknown>",
  "repo_url": "<string>",
  "tags": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

flow_name
string
required
org
string
required

Response

Successful Response

name
string
required
description
string
required
visibility
enum<string>
required
Available options:
public,
private
org
string
required
template
any
required
repo_url
tags
unknown
Last modified on April 7, 2026