GET
/
wallet
/
{chain}
/
{walletAddress}
curl --request GET \
  --url https://api-dex.chainstream.io/wallet/{chain}/{walletAddress} \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "1",
    "chain": "solana",
    "walletAddress": "HN7cABqLq46Es1jh92dQQisAq662SmxELLLsHHe4YWrH",
    "tokenAddress": "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
    "tokenPriceInUsd": "1.23",
    "openTime": "1741780514000",
    "closeTime": "1741780514000",
    "lastTime": "1741780514000",
    "balance": "1000",
    "buyAmount": "1500",
    "buyAmountInUsd": "1845",
    "buys": "10",
    "sellAmount": "500",
    "sellAmountInUsd": "615",
    "sells": "5",
    "averageBuyPriceInUsd": "1.23",
    "averageSellPriceInUsd": "1.23",
    "unrealizedProfitInUsd": "123.45",
    "unrealizedProfitRatio": "12.34",
    "realizedProfitInUsd": "45.67",
    "realizedProfitRatio": "4.56",
    "totalRealizedProfitInUsd": "169.12",
    "totalRealizedProfitRatio": "16.91"
  }
]

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

Available options:
sol,
base
walletAddress
string
required

An address of a wallet

Example:

"MJKqp326RZCHnAAbew9MDdui3iCKWco7fsK9sVuZTX2"

Query Parameters

tokenAddress
string

An address of a token

Example:

"6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

Response

200 - application/json

The response is of type object[].