# Get wallet trading stats

GET /api/v1/market-data/leaderboard/stats/{wallet\_address}

## Get wallet trading stats

> Returns lifetime aggregate trading statistics for a single wallet, including total PnL, win rates, buy/sell volumes, trade count, and best/worst individual trades.

```json
{"openapi":"3.1.1","info":{"title":"FortyTwo Read API","version":"1.0"},"tags":[{"description":"GET /api/v1/market-data/leaderboard/stats/{wallet_address}","name":"get-wallet-stats"}],"servers":[{"url":"https://rest.ft.42.space/"}],"paths":{"/api/v1/market-data/leaderboard/stats/{wallet_address}":{"get":{"description":"Returns lifetime aggregate trading statistics for a single wallet, including total PnL, win rates, buy/sell volumes, trade count, and best/worst individual trades.","tags":["get-wallet-stats"],"summary":"Get wallet trading stats","parameters":[{"schema":{"type":"string"},"description":"Ethereum wallet address","name":"wallet_address","in":"path","required":true}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/handler.WalletStats"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api.ErrorResponse"}}}},"404":{"description":"Not Found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api.ErrorResponse"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/api.ErrorResponse"}}}}}}}},"components":{"schemas":{"handler.WalletStats":{"type":"object","properties":{"avgTradeSize":{"type":"number"},"bestTrade":{"type":"number"},"buyVolume":{"type":"number"},"losingPredictions":{"type":"integer"},"losingSells":{"type":"integer"},"pnl":{"type":"number"},"predictionWinRate":{"type":"number"},"profitableSells":{"type":"integer"},"sellVolume":{"type":"number"},"sellWinRate":{"type":"number"},"totalVolume":{"type":"number"},"tradeCount":{"type":"integer"},"walletAddress":{"type":"string"},"winRate":{"type":"number"},"winningPredictions":{"type":"integer"},"worstTrade":{"type":"number"}}},"api.ErrorResponse":{"type":"object","properties":{"code":{"type":"integer"},"error":{"type":"string"},"message":{"type":"string"}}}}}}
```
