---
title: "Fetch Split Test Step"
method: GET
path: "/funnels/{funnel_id}/split_test_steps/{id}"
tags: ["Funnels::SplitTestStep"]
---

# Fetch Split Test Step

`GET /funnels/{funnel_id}/split_test_steps/{id}`

Fetch a single split test step with its variants and weights.

## Path parameters

- `funnel_id` integer, required
- `id` integer, required

## Response `200`

OK

- SplitTestStepAttributes — A split test step wraps an existing page in a funnel in a two-branch split. Each variant carries the `show_page_step` + `page` attached to that branch (both `null` when the branch is empty), plus the branch's traffic `weight` (0..100).
  - `id` integer — Split test step ID
  - `public_id` string — Obfuscated split test step ID
  - `funnel` object — The funnel containing this split test.
    - `id` integer — Funnel ID
    - `public_id` string — Obfuscated funnel ID
    - `name` string — Funnel name
  - `variants` object[] — Ordered variants. Binary split tests always have 2 entries.
    - `show_page_step` object, nullable — The ShowPageStep function attached to this branch, or null if empty.
      - `id` integer
      - `public_id` string
      - `name` string
      - `current_path` string
    - `page` object, nullable — The page attached to this branch, or null if empty.
      - `id` integer
      - `public_id` string
      - `name` string
    - `weight` integer — Percentage of traffic sent to this branch (0..100). Branches must sum to 100.
  - `created_at` string, date-time
  - `updated_at` string, date-time

## Other responses

- `401` — Unauthorized
- `404` — Not Found

---

[API](https://skmtc.net/myclickfunnels/apis/clickfunnels-api.md) · [All operations](https://skmtc.net/myclickfunnels/apis/clickfunnels-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myclickfunnels/clickfunnels-api/revisions/ae6313eaa176/schema)
