Funnels::SplitTestStep
Fetch Split Test Step
Fetch a single split test step with its variants and weights.
get/funnels/{funnel_id}/split_test_steps/{id}
Path parameters
funnel_idinteger required
idinteger required
Response
OK
Example response
{
"id": 1234,
"public_id": "AbCdEf",
"funnel": {
"id": 42,
"public_id": "xYz123",
"name": "My Funnel"
},
"variants": [
{
"show_page_step": {
"id": 100,
"public_id": "ShPgId",
"name": "Squeeze Page step",
"current_path": "/squeeze"
},
"page": {
"id": 500,
"public_id": "PageId",
"name": "Squeeze Page"
},
"weight": 100
},
{
"show_page_step": null,
"page": null,
"weight": 0
}
],
"created_at": "2026-04-24T00:00:00.000Z",
"updated_at": "2026-04-24T00:00:00.000Z"
}