VotePipe
Back to Provider Endpoints

GET /v1/providers/:key

Retrieve detailed information about a specific provider configuration. This endpoint returns complete provider settings including authentication method, webhook URL, vote statistics, and current status. Use this endpoint to inspect provider configuration, verify webhook URLs, check vote counts, or retrieve provider details for integration with monitoring or analytics systems.

Request

http
GET https://api.votepipe.com/v1/providers/hytale-servers-pro Authorization: Bearer mr_live_your_api_key_here

Response (200 OK)

json
{ "data": { "id": "1", "key": "hytale-servers-pro", "name": "Hytale-Servers.pro", "auth_method": "header", "auth_field": "Authorization", "votee_path": "username", "enabled": true, "webhook_url": "https://hooks.votepipe.com/my-server/hytale-servers-pro", "votes_today": 12, "votes_total": 456, "created_at": "2026-01-01T00:00:00Z" } }

Learn More