For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Getting Started
    • Introduction
    • How Verifa Works
    • Quickstart
    • Choosing an Integration Method
  • Use Cases
    • KYC Onboarding
    • Age Verification
    • AML Compliance
    • Fraud Prevention
    • Marketplace Trust & Safety
  • Core Concepts
    • Overview
    • Sessions
    • Verifications & Checks
    • Workflows
    • Identities
    • Cases
    • Screening & Reports
    • Lists
  • Integration Guides
    • Overview
    • JavaScript SDK
    • Web Capture Flow
    • API-Only Integration
    • Mobile SDK
    • Webhooks Guide
    • MCP Server
    • Migrating from Persona
  • API Details
    • Overview
    • Authentication
    • Pagination
    • Rate Limiting
    • Versioning
    • Errors
    • Webhooks
    • Idempotency
    • Key Inflection
    • Data Access
    • Data Retention
  • Tutorials
    • Creating Your First Verification Session
    • Creating a Workflow
    • Receiving Webhooks & Validating Signatures
    • Handling Webhook Events
    • Custom Document Types & AI Extraction
  • Best Practices
    • Testing
    • Preventing Duplicates
    • Fraud Signals
    • Changelog
  • API Reference
      • GETGet verification analytics overview
      • GETGet session trend data
      • GETGet verification check breakdown
      • GETGet session funnel
      • GETGet top rejection reasons
      • GETGet verification stats by country
      • GETGet verification stats by document type
      • GETGet session processing time stats
      • GETGet daily conversion rate
API ReferenceAnalytics

Get session funnel

GET
https://devapi.withverifa.com/api/v1/analytics/funnel
GET
/api/v1/analytics/funnel
$curl https://devapi.withverifa.com/api/v1/analytics/funnel \
> -H "X-API-Key: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "stages": [
3 {
4 "name": "created",
5 "label": "Sessions Created",
6 "count": 1200,
7 "drop_off_count": 300,
8 "drop_off_pct": 25,
9 "completion_pct": 100
10 },
11 {
12 "name": "started_capture",
13 "label": "Capture Started",
14 "count": 900,
15 "drop_off_count": 200,
16 "drop_off_pct": 22.2,
17 "completion_pct": 75
18 },
19 {
20 "name": "submitted",
21 "label": "Submitted",
22 "count": 700,
23 "drop_off_count": 150,
24 "drop_off_pct": 17.1,
25 "completion_pct": 58.3
26 },
27 {
28 "name": "completed",
29 "label": "Completed",
30 "count": 550,
31 "drop_off_count": 0,
32 "drop_off_pct": null,
33 "completion_pct": 45.8
34 }
35 ],
36 "summary": {
37 "total_created": 1200,
38 "completed": 550,
39 "failed": 100,
40 "expired": 50,
41 "overall_completion_rate": 45.8
42 },
43 "days": 30
44}

Returns the session funnel with stage-by-stage counts and drop-off percentages. Stages: created → started_capture → submitted → completed.

Required scope: sessions:read

Was this page helpful?
Previous

Get top rejection reasons

Next
Built with

Authentication

X-API-Keystring

Organization API key. Keys are prefixed with vk_live_ (production) or vk_sandbox_ (sandbox).

Headers

Verifa-VersiondateOptional

API version date string (e.g. 2026-02-01). If omitted, the version pinned to your API key is used.

Key-InflectionenumOptionalDefaults to snake

Response key casing. Defaults to snake.

Allowed values:

Query parameters

daysintegerOptional7-90Defaults to 30

Response

Funnel stages with drop-off.

stageslist of objects
summaryobject
daysinteger

Errors

401
Unauthorized Error