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
The primary endpoint. Returns wallet addresses that traded in a specific sport category, with volume, fill count, maker/taker split, and markets traded. Supports filtering by tag and time range.

Query Parameters

ParameterTypeDefaultDescription
tagstringFilter by tag slug: sports, nfl, esports, soccer, boxing, tennis, ufc, mlb, baseball, nba, counter-strike-2.
afterintegerOnly wallets active after this unix timestamp.
beforeintegerOnly wallets active before this unix timestamp.
sortstringvolumeSort by: volume, fills, first_seen, last_seen, markets.
limitinteger50Results per page (max 500).
offsetinteger0Pagination offset.

Example: All NFL wallets sorted by volume

curl "https://datasets.polynode.dev/api/datasets/sports-esports/wallets?tag=nfl&sort=volume&limit=5"

Example: Sports wallets active after Jan 1, 2025

curl "https://datasets.polynode.dev/api/datasets/sports-esports/wallets?tag=sports&after=1735689600&sort=volume&limit=10"

Response

{
  "wallets": [
    {
      "wallet": "0x204f72f35326db932158cba6adff0b9a1da95e14",
      "tag_slug": "sports",
      "fill_count": 374922,
      "total_volume_usdc": "72603487.44",
      "maker_fills": 72628,
      "taker_fills": 302294,
      "first_seen": 1761955252,
      "last_seen": 1777408494,
      "markets_traded": 52815
    }
  ],
  "count": 5,
  "limit": 5,
  "offset": 0
}

Response Fields

FieldTypeDescription
walletstringEthereum address (0x-prefixed, lowercase)
tag_slugstringThe sport/esport tag this row is aggregated for
fill_countintegerTotal fills (maker + taker combined)
total_volume_usdcstringTotal volume in USDC
maker_fillsintegerFills where this wallet was the maker (liquidity provider)
taker_fillsintegerFills where this wallet was the taker (liquidity consumer)
first_seenintegerUnix timestamp of first trade
last_seenintegerUnix timestamp of most recent trade
markets_tradedintegerNumber of distinct markets (condition_ids) traded