Analytics
The Partner API provides aggregate analytics across all your sub-organizations. Use these metrics to monitor portfolio performance, track identification volume, and manage credit usage.
Overview
Partner analytics aggregate data from every sub-organization under your partner account. You can filter by date range to analyze usage over specific periods. These endpoints are intended for reporting, dashboards, and operational monitoring.
Available Endpoints
GET /partner/analytics
Aggregate analytics across all sub-organizations
GET /partner/usage
Usage summary for a date range
Analytics Response
GET /partner/analytics returns aggregate metrics. Query parameters:
startDate
date (ISO)
Start of the analytics period (default: 30 days ago)
endDate
date (ISO)
End of the analytics period (default: today)
Response Fields
partnerId
Your partner account ID
startDate
Start date of the analytics period
endDate
End date of the analytics period
totalOrganizations
Total number of sub-organizations
activeOrganizations
Number of active sub-organizations
totalIdentifications
Total visitor identifications in the period
creditsRemaining
Credits remaining in your pool
creditsUsed
Credits consumed in the period
Example Request
Example Response
Usage Summary
GET /partner/usage returns a usage summary for a date range. Query parameters:
startDate
date (ISO)
Start date (default: start of current month)
endDate
date (ISO)
End date (default: today)
Response Fields
totalQuantity
Total usage quantity in the period
totalEvents
Total number of events
Use this endpoint for billing reconciliation and usage reporting when you need event-level or quantity-level summaries.
Date Range Filtering
Both endpoints accept ISO 8601 date format (e.g., 2024-01-01). The date range is inclusive: both the start and end dates are included in the results.
Analytics — Defaults to the last 30 days if no parameters are provided
Usage — Defaults to the start of the current month through today
Use Cases
Portfolio overview
/partner/analytics
Total orgs, identifications, credits
Monthly reporting
/partner/analytics
Set startDate and endDate to month boundaries
Billing reconciliation
/partner/usage
Align with your billing period
Credit monitoring
/partner/analytics
Track creditsRemaining and creditsUsed
Growth tracking
/partner/analytics
Compare periods to measure growth
Related Endpoints
For organization-level or billing-specific data:
GET
/partner/billing— Billing configuration and credit pool infoGET
/partner/billing/usage— Current billing period usageGET
/partner/organizations— List sub-organizations (filter by status, search, externalId)
Last updated