GET /api/v1/ping
Checks authentication status for one or all registered exchanges.
Parameters
Exchange identifier. If omitted, pings all registered exchanges.
Response
Whether credentials are configured for this exchange.
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"
[
{ "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" }
]