Skip to main content

Documentation Index

Fetch the complete documentation index at: https://polynode.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

GET https://datasets.polynode.dev/api/datasets/sports-esports/wallets/overlap
Returns wallets active in ALL specified tags. Find cross-sport bettors, multi-league market makers, etc.

Query Parameters

ParameterTypeDefaultDescription
tagsstringrequiredComma-separated tag slugs (2-10). Example: nba,nfl
min_volumenumberMinimum total volume in USDC across matched tags.
afterintegerOnly wallets active after this unix timestamp.
beforeintegerOnly wallets active before this unix timestamp.
sortstringvolumeSort by: volume, fills, markets.
limitinteger50Max results (max 500).
offsetinteger0Pagination offset.

Example

curl "https://datasets.polynode.dev/api/datasets/sports-esports/wallets/overlap?tags=nba,nfl&limit=2"

Response

{
    "count": 2,
    "tags": ["nba", "nfl"],
    "wallets": [
        {
            "wallet": "0x4bfb41d5b3570defd03c39a9a4d8de6bd8b8982e",
            "tags_matched": 2,
            "total_fills": 1550406,
            "total_volume_usdc": "599632635.742278",
            "total_markets": 31557
        },
        {
            "wallet": "0xc5d563a36ae78145c45a50134d48a1215220f80a",
            "tags_matched": 2,
            "total_fills": 1048778,
            "total_volume_usdc": "272822005.552589",
            "total_markets": 3693
        }
    ]
}

Response Fields

FieldTypeDescription
tagsstring[]The tags that were requested
wallets[].walletstringWallet address
wallets[].tags_matchedintegerNumber of tags this wallet is active in (equals tags length for overlap)
wallets[].total_fillsintegerCombined fills across matched tags
wallets[].total_volume_usdcstringCombined volume across matched tags
wallets[].total_marketsintegerCombined unique markets across matched tags