Exchanges

Get supported exchanges and their market counts

Exchanges

GET /api/v1/exchanges

Retrieve all supported prediction market exchanges with their market counts.

This endpoint costs 1 credit per request.


Headers

HeaderValueRequired
AuthorizationBearer or_live_xxxxxYes

Example Request

curl "https://api.tessradar.com/api/v1/exchanges" \
  -H "Authorization: Bearer or_live_xxxxx"

Example Response

{
  "success": true,
  "data": [
    {
      "id": "POLYMARKET",
      "name": "polymarket",
      "displayName": "Polymarket",
      "marketCount": 21454
    },
    {
      "id": "KALSHI",
      "name": "kalshi",
      "displayName": "Kalshi",
      "marketCount": 3200
    }
  ]
}

Response Fields

FieldTypeDescription
idstringExchange identifier
namestringExchange slug
displayNamestringHuman-readable name
marketCountnumberNumber of markets on exchange

Supported Exchanges

ExchangeIDDescription
PolymarketPOLYMARKETDecentralized prediction market on Polygon
KalshiKALSHICFTC-regulated US prediction market

On this page