Skip to content

Get Funnel

GET
/admin/analytics/funnels/{id}
curl --request GET \
--url 'http://localhost:9000/admin/analytics/funnels/example?limit=20&offset=0'
id
required
string
limit
integer
default: 20
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
funnel
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
Example generated
{
"funnel": {
"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"
}
}