Back to Vote Endpoints
GET /v1/votes/:id
Growth+
Retrieve detailed information about a specific vote record. This endpoint returns complete vote details including voter name, provider information, timestamps, and delivery status for both Discord notifications and server callbacks. Use this endpoint to inspect individual votes, debug delivery issues, verify vote processing, or retrieve vote metadata for integration with external systems or custom analytics.
Request
http
GET https://api.votepipe.com/v1/votes/vt_550e8400-e29b-41d4-a716-446655440000
Authorization: Bearer mr_live_your_api_key_hereResponse (200 OK)
json
{
"data": {
"id": "uuid",
"public_id": "vt_550e8400-e29b-41d4-a716-446655440000",
"voter_name": "PlayerOne",
"provider_key": "hytale-servers-pro",
"provider_name": "Hytale-Servers.pro",
"received_at": "2026-01-02T12:00:00.123Z",
"discord_status": "sent",
"discord_sent_at": "2026-01-02T12:00:00.456Z",
"callback_status": "sent",
"callback_sent_at": "2026-01-02T12:00:00.789Z",
"callback_attempts": 1
}
}