VotePipe
Back to Statistics Endpoints

GET /v1/stats/dashboard

Growth+

Retrieve comprehensive dashboard statistics for your organization. This endpoint provides a complete overview of your voting activity including summary counts for today, this week, this month, and all time. It also includes a breakdown of votes by provider, showing which server lists are generating the most votes, and daily trend data for visualizing voting patterns over time. Use this endpoint to build custom analytics dashboards, track performance metrics, identify trends, or integrate voting statistics into your own monitoring and reporting systems. Dashboard statistics and analytics require Growth plan or higher.

Request

http
GET https://api.votepipe.com/v1/stats/dashboard Authorization: Bearer mr_live_your_api_key_here

Response (200 OK)

json
{ "data": { "summary": { "today": 12, "this_week": 87, "this_month": 342, "all_time": 4567 }, "by_provider": [ { "key": "hytale-servers-pro", "name": "Hytale-Servers.pro", "count": 250 }, { "key": "hytalecharts", "name": "Hytale-Servers.pro", "count": 92 } ], "daily_trend": [ { "date": "2026-01-01", "count": 45 }, { "date": "2026-01-02", "count": 52 } ] }, "meta": { "request_id": "req_abc123" } }

Learn More