-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
phase:7-analyticsPhase 7: AnalyticsPhase 7: Analyticspriority:mediumNice to have for launchNice to have for launchrustRust codeRust codetype:apiAPI endpointsAPI endpoints
Description
What
Endpoint for publishers to view their template stats.
Files to touch
serenai-x402/gateway/src/routes/analytics.rs— extend existing or create
Endpoint
GET /api/publishers/me/analytics
Returns
- Total invocations (by day/week/month)
- Revenue earned
- Error rates
- Average latency
- Top consuming agents (by invocation count)
Response
{
"period": "30d",
"totalInvocations": 1234,
"successfulInvocations": 1200,
"errorRate": 0.027,
"revenue": "123.45",
"avgLatencyMs": 2340,
"topAgents": [
{ "wallet": "0x...", "invocations": 456 }
],
"byDay": [
{ "date": "2025-12-28", "invocations": 45, "revenue": "4.50" }
]
}How to test
- Create invocations, verify counts
- Test date range filtering
- Test empty state (no invocations)
References
- Design spec:
docs/plans/00_design_spec.md
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
phase:7-analyticsPhase 7: AnalyticsPhase 7: Analyticspriority:mediumNice to have for launchNice to have for launchrustRust codeRust codetype:apiAPI endpointsAPI endpoints