Skip to main content

Documentation Index

Fetch the complete documentation index at: https://polynode.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Returns a full profile for a single wallet in USD. Includes realized P&L, unrealized P&L from open positions, gross profit and loss, win/loss record, and total trading volume.

Request

GET /v3/wallets/{address}

Path parameters

ParameterTypeDescription
addressstringWallet address (0x-prefixed, case-insensitive)

Example

curl https://api.polynode.dev/v3/wallets/0x56687bf447db6ffa42ffe2204a05edaa20f55839
{
  "address": "0x56687bf447db6ffa42ffe2204a05edaa20f55839",
  "net_realized_pnl": 22053845.825455,
  "gross_profit": 22057977.181649,
  "gross_loss": -4131.356194,
  "unrealized_pnl": 0.000688755,
  "total_pnl": 22053845.826143753,
  "wins": 18,
  "losses": 4,
  "position_count": 22,
  "open_positions": 1,
  "total_volume": 43013258.515682,
  "elapsed_ms": 1
}

Response fields

FieldTypeDescription
net_realized_pnlnumberNet realized P&L in USD
gross_profitnumberSum of all winning position P&L (USD)
gross_lossnumberSum of all losing position P&L (USD, negative)
unrealized_pnlnumberUnrealized P&L from open positions based on current prices (USD)
total_pnlnumbernet_realized_pnl + unrealized_pnl (USD)
winsintegerNumber of positions closed with positive P&L
lossesintegerNumber of positions closed with negative P&L
position_countintegerTotal positions (open + closed)
open_positionsintegerPositions with shares > 0
total_volumenumberTotal volume traded (USD)