Query Checkout Journeys
The pageview journeys of the visitors who hit one funnel stage.
Two steps, because the second one has to be bounded by the first: pick the
most recent limit visitors that hit the stage inside the window, then
read their pageviews back out of the same table (full_journey=True) or
just the matching ones (False).
The read-back window is widened by +-24h so a journey that straddles the window edge comes back whole. It cannot need more than that: the stitch's salt rotates daily, so no row older or newer than that belongs to the same visitor anyway.
Authorization
bearerAuth API token generated from the fastmon dashboard (Account → API Token) or at organization level (fmo_…, one that outlives its creator). Send as Authorization: Bearer fm_... or paste the full token (including its prefix) into the Authorize dialog.
In: header
Path Parameters
uuidRequest Body
application/json
Request for the journeys behind a funnel step.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/organizations/497f6eca-6276-4993-bfeb-53cbbbba6f08/analytics/funnels/checkout/journeys" \ -H "Content-Type: application/json" \ -d '{ "time_range": { "from": "2019-08-24T14:15:22Z", "to": "2019-08-24T14:15:22Z" } }'{ "identity": "string", "stage": "string", "journeys": [ { "id": "string", "matched_at": "2019-08-24T14:15:22Z", "pages": [ { "url": "string", "started_at": "2019-08-24T14:15:22Z", "ended_at": "2019-08-24T14:15:22Z", "checkout_stage": "string", "cart_interactions": 0, "cart_interaction_errors": 0, "cart_interaction_kinds": { "property1": 0, "property2": 0 }, "page_type": "string", "nav_type": "string", "lcp": 0, "fcp": 0, "cls": 0, "inp": 0, "ttfb": 0 } ] } ], "execution_time_ms": 0}