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

# Top Traders Leaderboard

> Top traders ranked by volume with win rates and P&L estimates (Pro tier)



## OpenAPI

````yaml GET /api/v1/analytics/top-traders
openapi: 3.0.3
info:
  title: EventGraph API
  description: >-
    Unified prediction market data across Polymarket, Kalshi, Limitless, and
    OpinionTrade.
  version: 1.0.0
  contact:
    name: EventGraph
    url: https://eventgraph.ai
    email: info@eventgraph.ai
servers:
  - url: https://app.eventgraph.ai
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /api/v1/analytics/top-traders:
    get:
      tags:
        - Analytics
      summary: Top Traders Leaderboard
      description: >-
        Top traders ranked by volume, with win rates, number of markets traded,
        and P&L estimates.
      operationId: getTopTraders
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
        - name: platform
          in: query
          schema:
            type: string
          description: Filter by platform
      responses:
        '200':
          description: Top traders
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope'
        '401':
          description: Invalid or missing API key
        '403':
          description: Endpoint not available on your tier
components:
  schemas:
    Envelope:
      type: object
      properties:
        data:
          description: Response payload
        timestamp:
          type: string
          format: date-time
        meta:
          type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your EventGraph API key (eg_live_...)

````