Crypto ETF Flow Tracker - BTC/ETH/SOL Spot ETFs Daily API avatar

Crypto ETF Flow Tracker - BTC/ETH/SOL Spot ETFs Daily API

Pricing

$1.00 / 1,000 flow day trackeds

Go to Apify Store
Crypto ETF Flow Tracker - BTC/ETH/SOL Spot ETFs Daily API

Crypto ETF Flow Tracker - BTC/ETH/SOL Spot ETFs Daily API

Daily institutional flows for US-listed Bitcoin, Ethereum, and Solana spot ETFs. Net inflow/outflow USD, AUM, value traded, cumulative flow. 300d history. Telegram alerts on outsized flows. SoSoValue-powered.

Pricing

$1.00 / 1,000 flow day trackeds

Rating

0.0

(0)

Developer

Hojun Lee

Hojun Lee

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

20 hours ago

Last modified

Share

Crypto ETF Flow Tracker

Track daily institutional flows into US-listed Bitcoin, Ethereum, and Solana spot ETFs. Spot smart-money rotation and supply-absorption trends. No API key required.


What It Does

Pulls daily net inflow/outflow data for all US-listed spot crypto ETFs (BlackRock IBIT, Fidelity FBTC, ARK ARKB, BlackRock ETHA, Fidelity FETH, etc.) — aggregated by issuer category. Use it to:

  • Track BTC ETF accumulation trends (institutional flows are a leading indicator)
  • Compare BTC vs ETH vs SOL flow strength to detect rotation
  • Watch cumulative AUM growth across all issuers
  • Alert when daily flows spike — large outflows often precede dumps; large inflows often precede rallies

Why ETF Flows Matter

Since the January 2024 SEC approval of US spot Bitcoin ETFs, institutional flow data has become the most reliable leading indicator for major moves:

  • Sustained inflows ($500M+/day) often precede 5–15% rallies within a week
  • Sustained outflows signal de-risking — historically aligned with multi-week drawdowns
  • Rotation patterns (BTC outflows ↔ ETH inflows) reveal smart-money sector bets

This Actor gives you the raw daily series in a machine-readable format you can plug into your bot, dashboard, or alert pipeline.


Input

FieldTypeDefaultDescription
etfTypesstring[]["us-btc-spot","us-eth-spot","us-sol-spot"]Which ETFs to track. Supported: us-btc-spot, us-eth-spot, us-sol-spot
lookbackDaysinteger30Days of history to return (1–300)
sortBystringdate_descdate_desc, date_asc, abs_inflow_desc
alertOutflowUsdinteger0Alert when latest day's net outflow exceeds this $ amount. 0 = disabled
alertInflowUsdinteger0Alert when latest day's net inflow exceeds this $ amount. 0 = disabled
telegramBotTokenstring (secret)Telegram bot token for alerts
telegramChatIdstringChat ID to receive alerts

Example: Last 7 days, all ETFs

{
"etfTypes": ["us-btc-spot", "us-eth-spot", "us-sol-spot"],
"lookbackDays": 7,
"sortBy": "date_desc"
}

Example: Telegram alert on any BTC ETF day with > $1B outflow

{
"etfTypes": ["us-btc-spot"],
"lookbackDays": 1,
"alertOutflowUsd": 1000000000,
"telegramBotToken": "<token>",
"telegramChatId": "<chat_id>"
}

Output

Each record is one daily aggregate per ETF type:

{
"etf_type": "us-btc-spot",
"date": "2026-06-01",
"net_inflow_usd": -483760871.60,
"value_traded_usd": 2963023284.40,
"total_net_assets_usd": 91160255779.37,
"cum_net_inflow_usd": 55178763954.85,
"aum_change_pct": -3.20,
"is_inflow": false,
"is_outflow": true,
"row_index": 299
}
FieldDescription
net_inflow_usdDaily creation minus redemption value. Negative = net outflow
cum_net_inflow_usdAll-time cumulative net flow into the asset class
total_net_assets_usdTotal AUM across all ETFs in this category at end of day
value_traded_usdDaily dollar volume across all ETFs in this category
aum_change_pctDay-over-day AUM change (combines flows + price movement)

Pricing

Pay-Per-Event (PPE):

  • $0.001 per daily flow row returned

Examples:

  • 30 days × 3 ETFs = 90 rows = $0.09
  • Full 300 days × 3 ETFs = 900 rows = $0.90

Use Cases

Daily flow dashboard — Run every morning and pipe results into Notion/Sheets:

curl -X POST "https://api.apify.com/v2/acts/gochujang~crypto-etf-flow-tracker/runs?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"lookbackDays": 30, "sortBy": "date_desc"}'

Outflow panic alert — Alert when BTC ETFs lose >$500M in a single day:

{
"etfTypes": ["us-btc-spot"],
"lookbackDays": 1,
"alertOutflowUsd": 500000000,
"telegramBotToken": "<token>",
"telegramChatId": "<chat>"
}

Data Source

All data comes from SoSoValue — the industry-standard public ETF flow aggregator covering all approved US spot crypto ETFs. Data updates ~1 hour after US market close.

  • No API key required
  • No rate limits at single-actor scale
  • Up to ~300 days of historical daily data per ETF type

Build a complete crypto edge with these actors from the same author:


Feedback

If this Actor saves you time, a quick review helps others find it: Leave a review on Apify Store