VotePipe
Back to Provider Endpoints

GET /v1/providers

Retrieve a list of all provider configurations for your organization. This endpoint returns all configured providers with their basic information, webhook URLs, vote statistics, and status. Use this endpoint to audit your provider configurations, check which server lists are integrated, monitor vote counts across providers, or build dashboards that display provider status and performance metrics.

Request

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

Response (200 OK)

json
{ "data": { "providers": [ { "id": "1", "key": "hytale-servers-pro", "name": "Hytale-Servers.pro", "auth_method": "header", "votee_path": "username", "enabled": true, "webhook_url": "https://hooks.votepipe.com/my-server/hytale-servers-pro", "votes_today": 12, "votes_total": 456 } ], "count": 1, "limit": 25 }, "meta": { "request_id": "req_abc123" } }

Learn More