GET /api/v1/ping
Checks authentication status for one or all registered exchanges.
Parameters
Exchange identifier. If omitted, pings all registered exchanges.
Response
Whether the request succeeded.
Whether the exchange is authenticated and ready.
Status message or error details.
# 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" }
]
}