Skip to main content
GET
/
v1
/
activity
Activity feed
curl --request GET \
  --url https://api.polynode.dev/v1/activity \
  --header 'x-api-key: <api-key>'
{
  "trades": [
    {
      "wallet": "0x312ac123ff9551126f79e9ec53dab4df87637f59",
      "side": "BUY",
      "tokenId": "34377190941598917...",
      "conditionId": "0x7f76a575cfb2d0b8...",
      "size": 78.43,
      "price": 0.607,
      "timestamp": 1774115115,
      "title": "Bitcoin Up or Down - March 21, 1:45PM-1:50PM ET",
      "slug": "btc-updown-5m-1774115100",
      "eventSlug": "btc-updown-5m-1774115100",
      "outcome": "Up",
      "name": "Elastic-Alpenhorn",
      "txHash": "0xa0fe7f342aef603d..."
    }
  ],
  "count": 50
}
Returns the 50 most recent trades across all Polymarket markets. Includes full trade metadata, wallet addresses, and transaction hashes.
{
  "trades": [
    {
      "wallet": "0x312ac123ff9551126f79e9ec53dab4df87637f59",
      "side": "BUY",
      "tokenId": "34377190941598917...",
      "conditionId": "0x7f76a575cfb2d0b8...",
      "size": 78.43,
      "price": 0.607,
      "timestamp": 1774115115,
      "title": "Bitcoin Up or Down - March 21, 1:45PM-1:50PM ET",
      "slug": "btc-updown-5m-1774115100",
      "eventSlug": "btc-updown-5m-1774115100",
      "outcome": "Up",
      "name": "Elastic-Alpenhorn",
      "txHash": "0xa0fe7f342aef603d..."
    }
  ],
  "count": 50
}
Activity data refreshes every 60 seconds.

Authorizations

x-api-key
string
header
required

Response

Recent trades

The response is of type object.