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

(root)
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"
[
  { "exchange": "polymarket", "has_credentials": true, "authenticated": true, "message": "authenticated" },
  { "exchange": "kalshi", "has_credentials": true, "authenticated": true, "message": "authenticated" },
  { "exchange": "limitless", "has_credentials": false, "authenticated": false, "message": "not authenticated" }
]