Back to Statistics Endpoints
GET /v1/stats/public
Public
Access public aggregate statistics about VotePipe's platform-wide vote processing. This endpoint requires no authentication, making it perfect for embedding vote statistics on external websites, displaying global platform metrics, or building public-facing dashboards. The data includes total votes processed across all organizations, the number of active organizations, and the number of supported providers. Use this endpoint to showcase VotePipe's scale and reliability to potential users or to display community-wide statistics on your website.
Request
http
GET https://api.votepipe.com/v1/stats/publicResponse (200 OK)
json
{
"data": {
"total_votes": 125678,
"organizations": 45,
"providers": 2
},
"meta": {
"request_id": "req_abc123"
}
}