Skip to main content
GET
/
matching-markets
/
sports
Get Matching Markets for Sports
curl --request GET \
  --url https://api.aisa.one/apis/v1/matching-markets/sports \
  --header 'Authorization: Bearer <token>'
{
  "markets": {
    "nfl-ari-den-2025-08-16": [
      {
        "platform": "KALSHI",
        "event_ticker": "KXNFLGAME-25AUG16ARIDEN",
        "market_tickers": [
          "KXNFLGAME-25AUG16ARIDEN-ARI",
          "KXNFLGAME-25AUG16ARIDEN-DEN"
        ]
      },
      {
        "platform": "POLYMARKET",
        "market_slug": "nfl-ari-den-2025-08-16",
        "token_ids": [
          "34541522652444763571858406546623861155130750437169507355470933750634189084033",
          "104612081187206848956763018128517335758189185749897027211060738913329108425255"
        ]
      }
    ],
    "nfl-dal-phi-2025-09-04": [
      {
        "platform": "KALSHI",
        "event_ticker": "KXNFLGAME-25SEP04DALPHI",
        "market_tickers": [
          "KXNFLGAME-25SEP04DALPHI-DAL",
          "KXNFLGAME-25SEP04DALPHI-PHI"
        ]
      }
    ]
  }
}
Sports finds equivalent markets across different prediction market platforms (Polymarket, Kalshi, etc.) for sports events. Provide either one or more Polymarket market slugs or Kalshi event tickers to discover the corresponding markets on other platforms, including their token IDs and market tickers. Best for: Cross-platform arbitrage detection, comparing odds across prediction markets, building multi-platform sports dashboards, finding liquidity across venues. Endpoint: GET /matching-markets/sports
Note: Exactly one of polymarket_market_slug or kalshi_event_ticker must be provided. They cannot be combined in the same request. Multiple values for either parameter are supported.

Example

curl -X GET "https://api.aisa.one/apis/v1/matching-markets/sports?polymarket_market_slug=nfl-ari-den-2025-08-16&polymarket_market_slug=nfl-dal-phi-2025-09-04" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response

The response returns a markets object keyed by the input identifier (slug or ticker). Each key maps to an array of platform-specific market objects. Kalshi objects include platform, event_ticker, and market_tickers. Polymarket objects include platform, market_slug, and token_ids.

Authorizations

Authorization
string
header
required

Your AIsa API key as a Bearer token.

Query Parameters

polymarket_market_slug
string[]

The Polymarket market slug(s) to find matching markets for. To get multiple markets at once, provide the query param multiple times with different slugs. Can not be combined with kalshi_event_ticker.

Example:
[
"nfl-ari-den-2025-08-16",
"nfl-dal-phi-2025-09-04"
]
kalshi_event_ticker
string[]

The Kalshi event ticker(s) to find matching markets for. To get multiple markets at once, provide the query param multiple times with different tickers. Can not be combined with polymarket_market_slug.

Example:
[
"KXNFLGAME-25AUG16ARIDEN",
"KXNFLGAME-25SEP04DALPHI"
]

Response

Matching markets response

markets
object
Example:
{
"nfl-ari-den-2025-08-16": [
{
"platform": "KALSHI",
"event_ticker": "KXNFLGAME-25AUG16ARIDEN",
"market_tickers": [
"KXNFLGAME-25AUG16ARIDEN-ARI",
"KXNFLGAME-25AUG16ARIDEN-DEN"
]
},
{
"platform": "POLYMARKET",
"market_slug": "nfl-ari-den-2025-08-16",
"token_ids": [
"34541522652444763571858406546623861155130750437169507355470933750634189084033",
"104612081187206848956763018128517335758189185749897027211060738913329108425255"
]
}
],
"nfl-dal-phi-2025-09-04": [
{
"platform": "KALSHI",
"event_ticker": "KXNFLGAME-25SEP04DALPHI",
"market_tickers": [
"KXNFLGAME-25SEP04DALPHI-DAL",
"KXNFLGAME-25SEP04DALPHI-PHI"
]
}
]
}