get https://public-api.birdeye.so/wallet/v2/net-worth
Retrieve net worth of a wallet on a specific date.
count
: Specifies how many intervals (hours or days) to include.- Example:
count
=5 withtype
=1d returns five days of data (either backward or forward).
- Example:
type
: Defines the time unit forcount
. Accepts: 1h (hourly) or 1d (daily).- Example:
type=1h
meanscount=5
covers five hours.
- Example:
direction
: Determines howcount
is applied:back
: Retrieves the last N intervals before time.forward
: Retrieves the next N intervals starting from time.- Example: If
direction=back
,count=3
,type=1d
, andtime=2025-07-31 23:59:59
, you'll get daily net worth for: July 28 → July 29 → July 30.
- Example: If
time
: Base timestamp in ISO 8601 UTC format (YYYY-MM-DD HH:MM:SS
).