fastmon Docs
Analytics

Query Checkout Funnel

Report an issue

The cart -> checkout -> success funnel and its series - observed facts only.

Each visitor is counted once per step they reached at least once, in the bucket of their funnel ENTRY. The window totals are therefore exactly the column sums of the series, which is why one query answers both.

Authorization

bearerAuth
AuthorizationBearer <token>

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

org_id*Org Id
Formatuuid

Request Body

application/json

Request for the checkout funnel + its time series.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

POST
/organizations/{org_id}/analytics/funnels/checkout
curl -X POST "https://example.com/organizations/497f6eca-6276-4993-bfeb-53cbbbba6f08/analytics/funnels/checkout" \  -H "Content-Type: application/json" \  -d '{    "time_range": {      "from": "2019-08-24T14:15:22Z",      "to": "2019-08-24T14:15:22Z"    }  }'
{  "identity": "string",  "steps": [    {      "name": "string",      "reached": 0,      "conversion_rate": 0,      "step_conversion_rate": 0    }  ],  "cart_interactions": 0,  "cart_interaction_kinds": {    "property1": 0,    "property2": 0  },  "granularity": "string",  "timeseries": [    {      "bucket": "2019-08-24T14:15:22Z",      "reached": {        "property1": 0,        "property2": 0      },      "cart_interactions": 0    }  ],  "execution_time_ms": 0}