Track and analyze crypto wallet performance across multiple blockchains by scraping gmgn.ai. Monitor insider and whale wallets with PnL, win rate, and balance tracking. Supports Solana, Ethereum, Base, Tron, and Blast.
Track and analyze insider & whale wallet performance across multiple blockchains by scraping data from https://gmgn.ai/.
Parameter | Type | Required | Description |
---|---|---|---|
wallets | array | Yes | List of wallet addresses to analyze |
chain | string | Yes | Blockchain network (sol , eth , base , tron , blast ) |
daysOption | string | No | Analysis period (7d , 30d , default: 30d ) |
proxy | object | No | RECOMMENDED! Custom proxy configuration. See recommendation section |
1{ 2 "wallets": [ 3 "61LtsXuMfC2SCUr7RYVRKBe3mmTTxUYeGt4HTN94CjKx", 4 "BieeZkdnBAgNYknzo3RH2vku7FcPkFZMZmRJANh2TpW" 5 ], 6 "proxy": { 7 "useApifyProxy": false, 8 "proxyUrls": [ 9 "http://username:password@my-proxy.example.com:port" 10 ] 11 }, 12 "chain": "sol", 13 "daysOption": "30d" 14}
Metric | Description |
---|---|
Total PnL (USD) | Total profit/loss in USD across all trades |
PnL Percentage | Percentage return on investment (as float, e.g. 1.25 = 125%) |
Unrealized Profits | Current paper gains/losses on held positions |
Total Cost Basis | Total amount invested in purchases |
Average Token Cost | Mean price paid per token |
Average Realized Profit | Mean profit taken per successful trade |
Current Balance | Current native token balance held on the specified blockchain |
USD Balance | Current balance converted to USD value |
Win Rate | Percentage of profitable trades (as float, e.g. 0.685 = 68.5%) |
Time Period | Duration of analysis (7d/30d) |
Wallet Details | Address and blockchain information |
Error | Any errors encountered during analysis. Most of the time, this will be null |
1{ 2 "wallet": "61LtsXuMfC2SCUr7RYVRKBe3mmTTxUYeGt4HTN94CjKx", 3 "chain": "sol", 4 "daysOption": "30d", 5 "totalPnlUsdAmount": 15234.50, 6 "totalPnlPct": 25.6, 7 "unrealizedUsdProfit": 3421.75, 8 "totalUsdCost": 50000.00, 9 "tokenAvgUsdCost": 22.45, 10 "tokenAvgRealizedUsdProfit": 1250.80, 11 "balance": 2234.567, 12 "usdBalance": 53421.75, 13 "pnlPct": 25.6, 14 "winrate": 68.5, 15 "error": null 16}
1interface WalletStats { 2 wallet: string; 3 chain: string; 4 daysOption: string; 5 totalPnlUsdAmount?: number; 6 totalPnlPct?: number; 7 unrealizedUsdProfit?: number; 8 totalUsdCost?: number; 9 tokenAvgUsdCost?: number; 10 tokenAvgRealizedUsdProfit?: number; 11 balance?: number; 12 usdBalance?: number; 13 pnlPct?: number; 14 winrate?: number; 15 error?: string; 16}
1from pydantic import BaseModel 2from typing import Optional 3 4class WalletStats(BaseModel): 5 wallet: str 6 chain: str 7 daysOption: str 8 totalPnlUsdAmount: Optional[float] 9 totalPnlPct: Optional[float] 10 unrealizedUsdProfit: Optional[float] 11 totalUsdCost: Optional[float] 12 tokenAvgUsdCost: Optional[float] 13 tokenAvgRealizedUsdProfit: Optional[float] 14 balance: Optional[float] 15 usdBalance: Optional[float] 16 pnlPct: Optional[float] 17 winrate: Optional[float] 18 error: Optional[str]
Setup
Running the Actor
Accessing Results
Disclaimer: The tool provides insights based on historical wallet performance. Investment outcomes are subject to market risks, and past performance is not indicative of future results.
Don't miss out on valuable wallet insights. Start tracking high-performing wallets today!
Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.
No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!