> ## Documentation Index
> Fetch the complete documentation index at: https://docs.polynode.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Activity Feed

> Live platform-wide trade feed.

Returns the 50 most recent trades across all Polymarket markets. Includes full trade metadata, wallet addresses, and transaction hashes.

<ResponseExample>
  ```json theme={null}
  {
    "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
  }
  ```
</ResponseExample>

<Note>
  Activity data refreshes every 60 seconds.
</Note>


## OpenAPI

````yaml GET /v1/activity
openapi: 3.1.0
info:
  title: PolyNode API
  description: >-
    Real-time Polymarket data API with decoded mempool settlements, OHLCV
    candles, and full Polygon JSON-RPC proxy.
  contact:
    name: PolyNode
    url: https://polynode.dev
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.polynode.dev
    description: Production
security:
  - api_key: []
paths:
  /v1/activity:
    get:
      tags:
        - Enriched Data
      summary: Activity feed
      description: >-
        50 most recent trades across all Polymarket markets with full trade
        metadata, wallet addresses, and transaction hashes.
      operationId: activity_feed
      responses:
        '200':
          description: Recent trades
          content:
            application/json:
              schema:
                type: object
              example:
                trades:
                  - wallet: '0xd6c2222ae00d99e97acd234f49ef164ab23ba53d'
                    side: SELL
                    tokenId: >-
                      57216272564529548464686463691236811991956032201293786790337952253964682584376
                    conditionId: >-
                      0xd595eb9b81885ff018738300c79047e3ec89e87294424f57a29a7fa9162bf116
                    size: 5
                    price: 0.908
                    timestamp: 1774625243
                    title: Will Trump acquire Greenland before 2027?
                    slug: will-trump-acquire-greenland-before-2027
                    eventSlug: will-trump-acquire-greenland-before-2027
                    outcome: 'No'
                    name: Impressionable-Set
                    txHash: >-
                      0x3d586d03b047a29648b1726123b89b1af6c04ba00de19b1d90921e38407542c2
                count: 50
        '401':
          description: Missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - api_key: []
components:
  schemas:
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````