> ## 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.

# Trader Profile

> Full profile for any Polymarket trader.

Returns comprehensive stats for a trader: PnL, volume, trade count, largest win, current portfolio value, and account metadata. Data is sourced from Polymarket's own profile page.

<Note>
  For V3 wallet-level accounting, including exact all-time trader-paid fees, use [`GET /v3/wallets/{address}?include_accounting_summary=true`](/data/wallets/summary). The V3 accounting summary is sourced from PolyNode's indexed onchain fill data and does not require paging raw fee rows.
</Note>

`totalPnl` is the net portfolio PnL that matches the number shown on a Polymarket profile page. This factors in realized gains, cost basis still deployed in open positions, and unrealized gains/losses. If you want total realized gains from closed positions instead, use the [onchain positions](/api-reference/wallets/onchain-positions) endpoint's `total_realized_pnl` field.

The response includes an `eoaWallet` field that resolves the underlying EOA (externally owned account) for Polymarket Safe proxy wallets. This is derived onchain via the Gnosis Safe `getOwners()` call. For older lightweight proxy wallets that don't support this method, `eoaWallet` returns `null`.

<ParamField path="wallet" type="string" required>
  Polymarket wallet address (e.g., `0xc2e7800b5af46e6093872b177b7a5e7f0563be51`).
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
    "wallet": "0xc2e7800b5af46e6093872b177b7a5e7f0563be51",
    "eoaWallet": "0xb49e5499562a4bc3345c1a1f2db13a5360dfddac",
    "name": "beachboy4",
    "pseudonym": "Threadbare-Skunk",
    "profileSlug": "@beachboy4",
    "joinDate": "2025-11-30T17:26:07.997000Z",
    "trades": 149,
    "marketsTraded": 149,
    "largestWin": 3487512.609533,
    "views": 111735,
    "totalVolume": 199137316.6,
    "totalPnl": 4142102.07,
    "realizedPnl": 0,
    "unrealizedPnl": 0,
    "positionValue": 4418.03,
    "profileImage": null
  }
  ```
</ResponseExample>


## OpenAPI

````yaml GET /v1/trader/{wallet}
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/trader/{wallet}:
    get:
      tags:
        - Enriched Data
      summary: Trader profile
      description: >-
        Full profile for any Polymarket trader: PnL, volume, trade count,
        largest win, portfolio value, and account metadata.
      operationId: trader_profile
      parameters:
        - name: wallet
          in: path
          description: Polymarket wallet address
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Trader profile
          content:
            application/json:
              schema:
                type: object
              example:
                wallet: '0xc2e7800b5af46e6093872b177b7a5e7f0563be51'
                eoaWallet: '0xb49e5499562a4bc3345c1a1f2db13a5360dfddac'
                name: beachboy4
                pseudonym: Threadbare-Skunk
                profileSlug: '@beachboy4'
                joinDate: '2025-11-30T17:26:07.997000Z'
                trades: 149
                marketsTraded: 149
                largestWin: 3487512.61
                views: 113521
                totalVolume: 199137316.6
                totalPnl: 4142102.07
                realizedPnl: 0
                unrealizedPnl: 0
                positionValue: 4418.03
                profileImage: null
        '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

````