HyperPaxeer NetworkPaxeer Network
API Reference

Get PnL history

GET
/api/v1/portfolio/{address}/pnl

Returns daily PnL history showing portfolio value changes over time. Each entry includes total value, component breakdown, and daily change.

Path Parameters

address*string

Wallet address (with or without 0x prefix, case-insensitive)

Match^0x[a-fA-F0-9]{40}$

Query Parameters

days?integer

Number of days of history (max 365)

Default30
Rangevalue <= 365

Response Body

application/json

text/plain

curl -X GET "https://us-east-1.user-stats.sidiora.exchange/api/v1/portfolio/0xf263aB36de550bDa08b52d43eB253b3C0387e2bc/pnl"
{
  "address": "string",
  "days_requested": 0,
  "history": [
    {
      "date": "2019-08-24",
      "total_value_usd": "string",
      "native_value_usd": "string",
      "token_value_usd": "string",
      "pnl_usd": "string",
      "pnl_percent": "string"
    }
  ]
}
"string"