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/tags/{slug}/wallets
Paginated wallet list for a specific tag.

Path Parameters

ParameterTypeDescription
slugstringTag slug (e.g. nfl, esports, soccer)

Query Parameters

ParameterTypeDefaultDescription
afterintegerOnly wallets active after this unix timestamp.
sortstringvolumeSort by: volume, fills, first_seen, last_seen, markets.
limitinteger50Results per page (max 500).
offsetinteger0Pagination offset.

Example

curl "https://datasets.polynode.dev/api/datasets/sports-esports/tags/esports/wallets?sort=fills&limit=10"

Response

{
  "tag_slug": "esports",
  "wallets": [
    {
      "wallet": "0x...",
      "fill_count": 8421,
      "volume_usdc": "1203847.23",
      "maker_fills": 7200,
      "taker_fills": 1221,
      "markets_traded": 342,
      "first_seen": 1762010079,
      "last_seen": 1777830640
    }
  ],
  "count": 10,
  "limit": 10,
  "offset": 0
}