SDK
import { Client } from '@solana-tracker/data-api';
const client = new Client({ apiKey: 'YOUR_API_KEY' });
const data = await client.getPnlV2WalletChart('FbMxP3GVq8TQ36nbYgx4NP9iygMpwAwFWJwW81ioCiSF', { time_from: 1700000000, time_to: 1700086400 });{
"wallet": "CyaE1VxvBrahnPWkqm5VsdCvyS2QmNht2UFrKJHga54o",
"identity": {
"name": "Cented",
"twitter": "@Cented7",
"avatar": "https://kol-avatar.solanatracker.io/CyaE1VxvBrahnPWkqm5VsdCvyS2QmNht2UFrKJHga54o",
"platforms": [
"axiom",
"bloom"
],
"type": "kol",
"tags": [
"kol",
"axiom",
"bloom"
]
},
"points": [
{
"date": "2025-10-14",
"time": 1760400000,
"pnl": {
"realized": 6816182.11,
"total": 6816182.11
},
"invested": 32254563.43,
"proceeds": 38281423.93,
"activity": {
"realizedPnl": 37132.78,
"buys": 359,
"sells": 303,
"volume": 365027.19,
"avgHoldTimeSecs": 32.339436464088394
},
"counts": {
"buys": 72853,
"sells": 76328,
"tokensTraded": 46329
}
},
{
"date": "2025-10-15",
"time": 1760486400,
"pnl": {
"realized": 6856608.25,
"total": 6856608.25
},
"invested": 32346009.86,
"proceeds": 38413230.91,
"activity": {
"realizedPnl": 40426.14,
"buys": 196,
"sells": 228,
"volume": 223253.42,
"avgHoldTimeSecs": 45.60831132075471
},
"counts": {
"buys": 73049,
"sells": 76556,
"tokensTraded": 46434
}
}
],
"summary": {
"days": {
"trading": 180,
"positive": 179,
"negative": 1,
"breakEven": 0
},
"totals": {
"realizedPnl": 3574393.69,
"volume": 40026214.46
},
"winRate": 99.44,
"bestDay": {
"date": "2026-03-23",
"realizedPnl": 85718.59
},
"worstDay": {
"date": "2025-11-12",
"realizedPnl": -60803.14
},
"streaks": {
"positive": 150,
"negative": 1,
"currentPositive": 150,
"currentNegative": 0
},
"drawdown": {
"amount": 515125.86,
"percent": 5.31
},
"averages": {
"dailyVolume": 222367.86,
"dailyRealizedPnl": 19857.74,
"holdTimeSecs": 54
}
},
"pagination": {
"count": 180,
"hasMore": true,
"nextTimeTo": 1760313600
}
}Wallet
Get Wallet Chart
按日时间序列,用于绘制钱包盈亏、成交量与活跃度;支持用 time_from/time_to 向后翻页,并含汇总统计。
GET
/
v2
/
pnl
/
wallets
/
{wallet}
/
chart
SDK
import { Client } from '@solana-tracker/data-api';
const client = new Client({ apiKey: 'YOUR_API_KEY' });
const data = await client.getPnlV2WalletChart('FbMxP3GVq8TQ36nbYgx4NP9iygMpwAwFWJwW81ioCiSF', { time_from: 1700000000, time_to: 1700086400 });{
"wallet": "CyaE1VxvBrahnPWkqm5VsdCvyS2QmNht2UFrKJHga54o",
"identity": {
"name": "Cented",
"twitter": "@Cented7",
"avatar": "https://kol-avatar.solanatracker.io/CyaE1VxvBrahnPWkqm5VsdCvyS2QmNht2UFrKJHga54o",
"platforms": [
"axiom",
"bloom"
],
"type": "kol",
"tags": [
"kol",
"axiom",
"bloom"
]
},
"points": [
{
"date": "2025-10-14",
"time": 1760400000,
"pnl": {
"realized": 6816182.11,
"total": 6816182.11
},
"invested": 32254563.43,
"proceeds": 38281423.93,
"activity": {
"realizedPnl": 37132.78,
"buys": 359,
"sells": 303,
"volume": 365027.19,
"avgHoldTimeSecs": 32.339436464088394
},
"counts": {
"buys": 72853,
"sells": 76328,
"tokensTraded": 46329
}
},
{
"date": "2025-10-15",
"time": 1760486400,
"pnl": {
"realized": 6856608.25,
"total": 6856608.25
},
"invested": 32346009.86,
"proceeds": 38413230.91,
"activity": {
"realizedPnl": 40426.14,
"buys": 196,
"sells": 228,
"volume": 223253.42,
"avgHoldTimeSecs": 45.60831132075471
},
"counts": {
"buys": 73049,
"sells": 76556,
"tokensTraded": 46434
}
}
],
"summary": {
"days": {
"trading": 180,
"positive": 179,
"negative": 1,
"breakEven": 0
},
"totals": {
"realizedPnl": 3574393.69,
"volume": 40026214.46
},
"winRate": 99.44,
"bestDay": {
"date": "2026-03-23",
"realizedPnl": 85718.59
},
"worstDay": {
"date": "2025-11-12",
"realizedPnl": -60803.14
},
"streaks": {
"positive": 150,
"negative": 1,
"currentPositive": 150,
"currentNegative": 0
},
"drawdown": {
"amount": 515125.86,
"percent": 5.31
},
"averages": {
"dailyVolume": 222367.86,
"dailyRealizedPnl": 19857.74,
"holdTimeSecs": 54
}
},
"pagination": {
"count": 180,
"hasMore": true,
"nextTimeTo": 1760313600
}
}Documentation Index
Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt
Use this file to discover all available pages before exploring further.
SDK Example
import { Client } from '@solana-tracker/data-api';
const client = new Client({ apiKey: 'YOUR_API_KEY' });
const data = await client.getPnlV2WalletChart('FbMxP3GVq8TQ36nbYgx4NP9iygMpwAwFWJwW81ioCiSF', { time_from: 1700000000, time_to: 1700086400 });
授权
用于鉴权的 API Key
路径参数
Solana 钱包地址(Base58,约 32–44 字符)
Pattern:
^[1-9A-HJ-NP-Za-km-z]{32,44}$此页面对您有帮助吗?
⌘I