Avnology ID
API ReferenceAnalytics

Get Signup Metrics

Return aggregated signup metrics for a time range.

Endpoint

GET /v1/analytics:getSignupMetrics

Base URL: https://<Domain id="api"/>

Authentication: Bearer token with analytics:read scope.

Returns new-account creation counts, activation rate (verified email within 24h), and drop-off between registration flow start and session issuance.

Query Parameters

ParameterTypeRequiredDescription
start_timeRFC 3339 timestampYesStart of the range (inclusive)
end_timeRFC 3339 timestampYesEnd of the range (exclusive)
organization_idstringNoScope to a single org
granularityenumNoBucket width -- see Analytics

Example

Response (200 OK)

{
  "total_signups": 1284,
  "activated": 1119,
  "activation_rate": 0.8715,
  "buckets": [
    { "timestamp": "2026-04-10T00:00:00Z", "count": 187, "activated": 165 }
  ]
}

Get Login Metrics

Return aggregated login metrics for a time range.

Get MFA Adoption

Return MFA enrollment statistics for your tenant.

On this page