Wallet - Net Worth Chart
curl --request GET \
--url https://public-api.birdeye.so/wallet/v2/net-worth \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/wallet/v2/net-worth"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/wallet/v2/net-worth', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {
"wallet_address": "HV1KXxWFaSeriyFvXyx48FqG9BoFbfinB8njCJonqP7K",
"currency": "usd",
"current_timestamp": "2025-07-31T23:59:59Z",
"past_timestamp": "2025-07-01T23:59:59Z",
"history": [
{
"timestamp": "2025-07-30T23:59:59Z",
"net_worth": 13210463.21,
"net_worth_change": 1971274.94,
"net_worth_change_percent": 17.54
},
{
"timestamp": "2025-07-29T23:59:59Z",
"net_worth": 11839478.54,
"net_worth_change": 600290.26,
"net_worth_change_percent": 5.35
}
]
}
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}Wallet, Networth & PnL
Wallet - Net Worth Chart
Retrieve the historical net worth (total asset value) of a wallet over time, with daily, hourly granularity.
GET
/
wallet
/
v2
/
net-worth
Wallet - Net Worth Chart
curl --request GET \
--url https://public-api.birdeye.so/wallet/v2/net-worth \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/wallet/v2/net-worth"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/wallet/v2/net-worth', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {
"wallet_address": "HV1KXxWFaSeriyFvXyx48FqG9BoFbfinB8njCJonqP7K",
"currency": "usd",
"current_timestamp": "2025-07-31T23:59:59Z",
"past_timestamp": "2025-07-01T23:59:59Z",
"history": [
{
"timestamp": "2025-07-30T23:59:59Z",
"net_worth": 13210463.21,
"net_worth_change": 1971274.94,
"net_worth_change_percent": 17.54
},
{
"timestamp": "2025-07-29T23:59:59Z",
"net_worth": 11839478.54,
"net_worth_change": 600290.26,
"net_worth_change_percent": 5.35
}
]
}
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}- Usage Note
- Accessibility
- Chain Supported
Historical Solana net worth chart.
countsupports1to90intervals.typeaccepts1hand1d.directioncontrols whether the series is built backward or forward fromtime.timemust useYYYY-MM-DD HH:mm:ssin UTC, must not be in the future, and whentype=1hit must be within the last 7 days.
- Standard
- Lite
- Starter
- Premium
- Business
- Enterprise
Solana
Compute Unit ⚙️
Compute Unit ⚙️
- This endpoint consumes
50 CUper request.
Use Cases 💡
Use Cases 💡
- Chart wallet net worth over time for portfolio-performance views.
- Show how a wallet’s value changed before and after major trades or market events.
- Support treasury reporting and wallet-performance dashboards.
- Compare trend direction before inspecting token-level PnL.
How to Use 🛠️
How to Use 🛠️
- Set
x-chain=solana. - Pass the wallet address in
wallet. - Choose
type=1hfor short windows andtype=1dfor broader history. - Use
time,direction, andcountto anchor and shape the series you want.
Best Practices ✅
Best Practices ✅
- Use
1dfor most product dashboards and reserve1hfor recent, event-driven analysis. - Keep chart timezone labeling in UTC unless your UI explicitly converts it.
- Align this chart with PnL or price timelines when telling a wallet-performance story.
Limitations ⚠️
Limitations ⚠️
- Solana only.
type=1his limited to the last 7 days.
Authorizations
API key for authentication
Headers
Solana network only.
Available options:
solana Query Parameters
The wallet of the account.
Required range:
1 <= x <= 90Available options:
back, forward Time get net worth. Default is current time.
Time granularity used to group the returned net worth data. Use 1d for daily data with full historical coverage, or 1h for hourly data limited to the last 7 days.
Available options:
1h, 1d Specify the sort order.
Available options:
desc, asc Was this page helpful?

