Skip to main content
GET /api/v1/ping Checks authentication status for one or all registered exchanges.

Parameters

exchange
string
Exchange identifier. If omitted, pings all registered exchanges.

Response

success
boolean
Whether the request succeeded.
data
PingResult[]
# Ping specific exchange
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.parsecapi.com/api/v1/ping?exchange=polymarket"

# Ping all exchanges
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.parsecapi.com/api/v1/ping"
{
  "success": true,
  "data": [
    { "exchange": "polymarket", "authenticated": true, "message": "authenticated" },
    { "exchange": "kalshi", "authenticated": true, "message": "authenticated" },
    { "exchange": "limitless", "authenticated": false, "message": "not authenticated" }
  ]
}