Skip to main content
GET
/
v2
/
wallet
/
{chain}
/
{walletAddress}
/
pnl
Wallet - PnL Summary
curl --request GET \
  --url https://api.dex.chainstream.io/v2/wallet/{chain}/{walletAddress}/pnl \
  --header 'Authorization: Bearer <token>'
{
  "avgProfitPerTradeInUsd": "402.86",
  "buyAmountInUsd": "101371192.39",
  "buys": "1515999",
  "losses": "348350",
  "realizedProfitInUsd": "802583.91",
  "realizedProfitRatio": "0.0035521324",
  "resolution": "1d",
  "sellAmountInUsd": "60369621.10",
  "sells": "1011994",
  "tokens": "15126",
  "totalCostInUsd": "225944253.64",
  "totalProfitInUsd": "1018427683.08",
  "totalProfitRatio": "4.5074290081",
  "totalTrades": "2527993",
  "unrealizedProfitInUsd": "1017625099.17",
  "unrealizedProfitRatio": "4.5038768756",
  "walletAddress": "54Pz1e35z9uoFdnxtzjp7xZQoFiofqhdayQWBMN7dsuy",
  "winRate": "0.5575",
  "wins": "438944",
  "updatedAt": "2026-02-04T11:42:50.000Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chain
enum<string>
required

A chain name listed in supported networks Supported blockchain chains

Available options:
sol,
eth,
bsc
walletAddress
string
required

An address of a wallet

Query Parameters

resolution
enum<string>
default:1d

PnL time resolution (1d, 7d, 30d, or all) PnL resolution period

Available options:
1d,
7d,
30d,
all

Response

200 - application/json

Successful response

Wallet PnL Summary (aggregated across all tokens for a given resolution)

avgProfitPerTradeInUsd
string
required
Example:

"402.86"

buyAmountInUsd
string
required
Example:

"101371192.39"

buys
string
required
Example:

"1515999"

losses
string
required
Example:

"348350"

realizedProfitInUsd
string
required
Example:

"802583.91"

realizedProfitRatio
string
required
Example:

"0.0035521324"

resolution
string
required
Example:

"1d"

sellAmountInUsd
string
required
Example:

"60369621.10"

sells
string
required
Example:

"1011994"

tokens
string
required
Example:

"15126"

totalCostInUsd
string
required
Example:

"225944253.64"

totalProfitInUsd
string
required
Example:

"1018427683.08"

totalProfitRatio
string
required
Example:

"4.5074290081"

totalTrades
string
required
Example:

"2527993"

unrealizedProfitInUsd
string
required
Example:

"1017625099.17"

unrealizedProfitRatio
string
required
Example:

"4.5038768756"

walletAddress
string
required
Example:

"54Pz1e35z9uoFdnxtzjp7xZQoFiofqhdayQWBMN7dsuy"

winRate
string
required
Example:

"0.5575"

wins
string
required
Example:

"438944"

updatedAt
string | null
Example:

"2026-02-04T11:42:50.000Z"