Complete FunnelFox API docs: endpoints, authentication, request examples, and response formats. Build custom integrations with your funnels.
The FunnelFox API provides read access to your funnel data, enabling you to
retrieve information about funnels, user profiles, sessions, subscriptions,
and products. Use it to build custom dashboards, sync data with external
systems, or create detailed reports.
This doc covers the FunnelFox API only. If you’re using the FunnelFox Billing API, go to the Billing API section.
{ "data": [...], // Array of requested resources "pagination": { "cursor": "abc123", // Use for next page "has_more": true // More results available }}
# Filter by titleGET /funnels?filter[title]=welcome# Filter by aliasGET /funnels?filter[alias]=onboarding# Filter by typeGET /funnels?filter[type]=cancellation# Include deleted funnelsGET /funnels?filter[deleted]=true# Combine filtersGET /funnels?filter[type]=default&filter[title]=pricing&limit=10
# Filter by statusGET /subscriptions?filter[status]=active# Filter by productGET /subscriptions?filter[product_id]=prod_123# Filter by date range (if supported)GET /subscriptions?filter[created_after]=2024-01-01