List Funnels
GET
/admin/analytics/funnels
const url = 'http://localhost:9000/admin/analytics/funnels?limit=50&offset=0';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:9000/admin/analytics/funnels?limit=50&offset=0'Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” limit
integer
offset
integer
order
string
fields
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
funnels
Array<object>
object
id
string
name
string
label
string
description
string
steps
string
sales_channel_id
string
is_default
string
created_at
string format: date-time
updated_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{ "funnels": [ { "id": "example", "name": "example", "label": "example", "description": "example", "steps": "example", "sales_channel_id": "example", "is_default": "example", "created_at": "2026-04-15T12:00:00Z", "updated_at": "2026-04-15T12:00:00Z" } ], "count": 1, "limit": 1, "offset": 1}