/api/analytics/lamports-flow
Description: Analyze the total SOL flow (in lamports) across all wallets on the Solana blockchain, identifying which wallets have the highest net inflows or outflows. This endpoint is excellent for understanding large-scale SOL movements and market dynamics. You can limit the number of wallets returned to optimize usage:
- • Required Parameter: `api_key` – Your unique API Key (e.g., `?api_key=YOUR_API_KEY`).
- Optional Parameters:
?limit=N
– Limits the number of wallets returned (e.g., `?limit=5`). Default is 10.
- Usage Cost: Each request deducts 10 usage points, regardless of the `limit` parameter.
- Response Format: Returns a JSON array of wallet flow objects, each containing `wallet` and `total_flow`, sorted by `total_flow` in descending order.
Example Request:
curl "http://82.29.177.109:8080/api/analytics/lamports-flow?api_key=YOUR_API_KEY&limit=5"
Example Response:
[
{
"wallet": "5TuiERc4X7EgZTxNmj8PHgzUAfNHZRLYHKp4DuiWevXv",
"total_flow": 8893158549
}
]