Skip to main content
GET
/
api
/
v1
/
analytics
/
funnels
/
{id}
Get funnel results
curl --request GET \
  --url https://api.engagefabric.com/api/v1/analytics/funnels/{id}
{
  "funnelId": "<string>",
  "name": "<string>",
  "periodStart": "<string>",
  "periodEnd": "<string>",
  "totalEntries": 123,
  "totalCompletions": 123,
  "overallConversionRate": 123,
  "steps": [
    {
      "name": "<string>",
      "eventType": "<string>",
      "count": 123,
      "conversionRate": 123,
      "overallConversionRate": 123,
      "dropOff": 123
    }
  ],
  "description": "<string>"
}

Path Parameters

id
string
required

Funnel ID

Query Parameters

days
number
default:30

Number of days to analyze

Example:

30

projectId
string
required

Response

200 - application/json

Funnel analysis results

funnelId
string
required

Funnel ID

name
string
required

Funnel name

periodStart
string
required

Analysis period start date (ISO 8601)

periodEnd
string
required

Analysis period end date (ISO 8601)

totalEntries
number
required

Total users who entered the funnel

totalCompletions
number
required

Total users who completed all steps

overallConversionRate
number
required

Overall funnel conversion rate (percentage)

steps
object[]
required

Results for each funnel step

description
string

Funnel description