Skip to main content
GET
/
v2
/
pnl
/
wallets
/
{wallet}
/
highlights
Standout positions
curl --request GET \
  --url https://api.dexploit.dev/v2/pnl/wallets/{wallet}/highlights \
  --header 'X-API-Key: <api-key>'
{
  "wallet": "<string>",
  "pnl_mode": "<string>",
  "biggest_winner": {
    "mint": "<string>",
    "realized_sol": 123,
    "tags": [
      "<string>"
    ]
  },
  "biggest_loser": {
    "mint": "<string>",
    "realized_sol": 123,
    "tags": [
      "<string>"
    ]
  },
  "fastest_flip": {
    "mint": "<string>",
    "seconds": 123,
    "tags": [
      "<string>"
    ]
  },
  "longest_hold": {
    "mint": "<string>",
    "seconds": 123,
    "tags": [
      "<string>"
    ]
  },
  "most_traded": {
    "mint": "<string>",
    "trade_count": 123,
    "tags": [
      "<string>"
    ]
  },
  "biggest_single_buy": {
    "mint": "<string>",
    "sol": 123
  },
  "biggest_single_sell": {
    "mint": "<string>",
    "sol": 123
  },
  "position_count": 123
}

Authorizations

X-API-Key
string
header
required

Preferred for swaps-api endpoints (/swaps/*, /stats/*, /trending, /pool-events).

Path Parameters

wallet
string
required

Wallet address (base58, 32–44 characters).

Query Parameters

pnl_mode
enum<string>
default:adjusted

PnL accounting mode. strict (FIFO) and adjusted (weighted-avg cost) are realized-PnL figures; raw is net cash-flow (Σ sells − Σ buys), not realized PnL. Unknown values fall back to adjusted.

Available options:
raw,
strict,
adjusted

Response

Highlights

wallet
string
pnl_mode
string
biggest_winner
object

A standout position. null when no qualifying row matched.

biggest_loser
object

A standout position. null when no qualifying row matched.

fastest_flip
object

Sentinel 0 excluded.

longest_hold
object
most_traded
object
biggest_single_buy
object
biggest_single_sell
object
position_count
integer