Products — Analytics

Reporting

Build, schedule, and share reports on platform performance, team activity, and operational health. Reporting turns raw Ventryx data into structured summaries your stakeholders can act on.

Report types

ReportWhat it covers
API Traffic SummaryRequest volume, error rate, latency by endpoint and time period
Workflow PerformanceRun counts, success rate, step-level failure analysis
Usage by KeyPer-API-key request breakdown, rate limit events, top operations
Team ActivityActions per member, login events, approval decisions
Billing & UsageCurrent period usage vs. plan limits, overage projection
Audit SummarySecurity events — key revocations, role changes, SSO activity

Scheduled reports

Configure any report to run on a schedule and be delivered by email or posted to a Slack channel:

Schedule a weekly API summary
curl -X POST https://api.ventryx.io/v1/reports/schedules \
  -H "Authorization: Bearer $VENTRYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "report": "api_traffic_summary",
    "schedule": "0 9 * * 1",
    "period": "last_7_days",
    "delivery": { "type": "email", "to": ["[email protected]"] }
  }'

Exporting reports

Download any report as CSV, JSON, or PDF from the dashboard. Use the Reports API to fetch report data programmatically and pipe it into your own data warehouse or BI tool.