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

# Get Feed Events

> Retrieves the latest feed events related to a specific market with pagination support



## OpenAPI

````yaml GET /markets/{slug}/get-feed-events
openapi: 3.0.0
info:
  title: Limitless Exchange API
  description: >-
    Production-ready REST API for prediction market trading, portfolio
    management, and market data on Limitless Exchange (Base L2).
  version: '1.0'
  contact:
    name: API Support
    url: https://limitless.exchange
    email: help@limitless.network
servers:
  - url: https://api.limitless.exchange
    description: Production API
security: []
tags:
  - name: Authentication
    description: User authentication and session management
  - name: Markets
    description: Browse, search, and analyze prediction markets
  - name: Market Navigation
    description: Navigation tree, market pages, and property filters
  - name: Trading
    description: Create, manage, and cancel orders
  - name: Portfolio
    description: Position tracking, trade history, and performance
  - name: API Tokens
    description: Scoped API token management for partner integrations
  - name: Partner Accounts
    description: Sub-account creation and allowance recovery for partner integrations
  - name: System
    description: Public API state and availability information
paths:
  /markets/{slug}/get-feed-events:
    get:
      tags:
        - Markets
      summary: Get feed events for a market
      description: >-
        Retrieves the latest feed events related to a specific market with
        pagination support
      operationId: MarketController_getFeedEvent
      parameters:
        - name: page
          required: false
          in: query
          description: Page number for pagination
          schema:
            example: 1
            type: number
        - name: limit
          required: false
          in: query
          description: Number of events per page
          schema:
            example: 10
            type: number
        - name: slug
          required: false
          in: path
          description: Slug of the market
          schema:
            example: my-market-slug-123
      responses:
        '200':
          description: List of feed events for the market
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedEventsResponseDto'
        '500':
          description: Server error when retrieving feed events
      security:
        - HmacAuth: []
components:
  schemas:
    FeedEventsResponseDto:
      type: object
      properties:
        data:
          type: object
          description: Array of feed events with pagination (FEFeedEvents type)
          example:
            data:
              - eventType: NEW_TRADE
                timestamp: '2025-09-01T11:30:31.000Z'
                user:
                  name: GG
                  rankName: Bronze
                data:
                  title: Market Title
                  strategy: Buy
                  outcome: 'YES'
            totalPages: 5
          additionalProperties: true
      required:
        - data
  securitySchemes:
    HmacAuth:
      type: apiKey
      in: header
      name: lmts-api-key
      description: >-
        Scoped API token with HMAC-SHA256 signing. Requires three headers:
        lmts-api-key (token ID), lmts-timestamp (ISO-8601), lmts-signature
        (Base64-encoded HMAC). See Authentication docs for details.

````