Skip to content
Lira APILira API

Usage Statistics

Track verification usage and API key activity across your organization.


Get usage statistics

Return an overview of verification activity for your organization. Supports filtering by date range.

Terminal
curl "https://api.lira.com/api/v1/client/usage/stats?startDate=2026-03-01T00:00:00Z&endDate=2026-03-31T23:59:59Z" \
  -H "Authorization: Bearer YOUR_TOKEN"

Query parameters

ParameterTypeDescription
startDatestring (ISO 8601)Start of the reporting period
endDatestring (ISO 8601)End of the reporting period

Note

MEMBER role receives a limited view without API key breakdown. ORG_ADMIN and DEVELOPER roles receive the full dashboard statistics.


Get API key usage breakdown

Return per-API-key verification counts and activity. Requires ORG_ADMIN or DEVELOPER role.

Terminal
curl https://api.lira.com/api/v1/client/usage/api-keys \
  -H "Authorization: Bearer YOUR_TOKEN"

Next steps