Discover/Farside API
live

Farside APIfarside.co.uk

Access Bitcoin, Ethereum, and Solana spot ETF daily flow data in US$m across all US tickers, plus Farside Equity Fund metrics. 6 endpoints, historical data from inception.

Endpoint health
verified 3h ago
get_ethereum_etf_flows_all
get_bitcoin_etf_flows_recent
get_fund_info
get_solana_etf_flows
get_ethereum_etf_flows_recent
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the Farside API?

The Farside ETF Flows API provides 6 endpoints covering daily inflow and outflow data in US$m across all US spot Bitcoin, Ethereum, and Solana ETFs, plus public metrics for the Farside Equity Fund. The get_bitcoin_etf_flows_all endpoint returns complete historical records from January 2024 onward across 12 tickers including IBIT, FBTC, GBTC, and ARKB, with per-ticker summary statistics including totals, averages, and fee details.

Try it

No input parameters required.

api.parse.bot/scraper/942741c9-1857-4cca-89fd-31c80c2c6ea4/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/942741c9-1857-4cca-89fd-31c80c2c6ea4/get_bitcoin_etf_flows_recent' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace farside-co-uk-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.farside_investors_etf_crypto_flows_api import Farside, FlowReport, DailyFlow, Fund

farside = Farside()

# Get recent Bitcoin ETF flows
btc_report = farside.flowreports.bitcoin_recent()
for flow in btc_report.data:
    print(flow.date, flow.total)

# Get Solana ETF flows
sol_report = farside.flowreports.solana()
print(sol_report.summary)

# Get fund information
fund = farside.funds.get()
print(fund.launch_date, fund.launch_price, fund.fund_administrator)
All endpoints · 6 totalmissing one? ·

Get recent Bitcoin ETF flow data in US$m for all US spot Bitcoin ETFs. Returns the most recent trading days of daily flow amounts per ticker (IBIT, FBTC, BITB, ARKB, BTCO, EZBC, BRRR, HODL, BTCW, MSBT, GBTC, BTC) plus Total, and summary statistics including Fee, Total, Average, Maximum, and Minimum breakdowns per ticker.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "data": "array of daily flow records with Date and flow values per ticker plus Total",
    "summary": "object with Fee, Total, Average, Maximum, Minimum breakdowns per ticker"
  },
  "sample": {
    "data": {
      "data": [
        {
          "BTC": 4.4,
          "ARKB": 0,
          "BITB": 0,
          "BRRR": 0,
          "BTCO": 0,
          "BTCW": 0,
          "Date": "09 Jun 2026",
          "EZBC": 0,
          "FBTC": -20.2,
          "GBTC": 0,
          "HODL": 0,
          "IBIT": -61.6,
          "MSBT": 0,
          "Total": -77.4
        }
      ],
      "summary": {
        "Fee": {
          "FBTC": 0.0025,
          "IBIT": 0.0025
        },
        "Total": {
          "IBIT": 62175
        },
        "Average": {
          "IBIT": 102.9
        },
        "Maximum": {
          "IBIT": 1119.9
        },
        "Minimum": {
          "IBIT": -528.3
        }
      }
    },
    "status": "success"
  }
}

About the Farside API

Bitcoin ETF Flow Endpoints

Two endpoints cover US spot Bitcoin ETF flows. get_bitcoin_etf_flows_recent returns the most recent trading days of daily flow data across 12 tickers — IBIT, FBTC, BITB, ARKB, BTCO, EZBC, BRRR, HODL, BTCW, MSBT, GBTC, and BTC — plus a daily Total field. Its summary object breaks down Fee, Total, Average, Maximum, and Minimum per ticker. get_bitcoin_etf_flows_all returns the same shape but covers every trading day from January 2024 to present, making it suitable for backtesting or charting full-history cumulative flows.

Ethereum and Solana ETF Flow Endpoints

get_ethereum_etf_flows_recent and get_ethereum_etf_flows_all mirror the Bitcoin structure for US spot Ethereum ETFs, with tickers ETHA, ETHB, FETH, ETHW, TETH, ETHV, QETH, EZET, ETHE, and ETH. Ethereum summary objects additionally include a Seed field alongside Fee, Total, Average, Maximum, and Minimum. Ethereum history begins July 2024. get_solana_etf_flows covers the newer cohort of tickers — BSOL, VSOL, FSOL, TSOL, SOEZ, and GSOL — with the same summary fields including Fee, Seed, Total, Average, Maximum, and Minimum.

Farside Equity Fund Info

get_fund_info returns public metadata for the Farside Equity Fund. Fields include the current NAV (with the date embedded in the key name), launch date, launch price, fund auditor, fund administrator, investment advisor name, director of investment advisor, FCA host firm, and fund registration authority. This endpoint has no inputs and returns a flat object.

Reliability & maintenanceVerified

The Farside API is a managed, monitored endpoint for farside.co.uk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when farside.co.uk changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official farside.co.uk API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Charting cumulative net Bitcoin ETF inflows by ticker since January 2024 using get_bitcoin_etf_flows_all
  • Monitoring daily fund flow sentiment across all US spot Ethereum ETFs with get_ethereum_etf_flows_recent
  • Comparing Solana ETF adoption rates by aggregating flows across BSOL, VSOL, FSOL, TSOL, SOEZ, and GSOL
  • Building a dashboard that ranks ETF tickers by total net inflows using the per-ticker Total from summary
  • Tracking GBTC outflows versus new entrants like IBIT over the full Bitcoin ETF history
  • Pulling current Farside Equity Fund NAV and service provider details for due diligence with get_fund_info
  • Calculating average daily flow per Ethereum ETF ticker to identify consistent inflow trends
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does farside.co.uk have an official developer API?+
Farside does not publish an official developer API or documented data access endpoint. The Parse API is what exposes this data in a structured, queryable format.
What does the `summary` object contain and how does it differ between asset classes?+
For Bitcoin ETFs, summary includes Fee, Total, Average, Maximum, and Minimum fields per ticker. For Ethereum and Solana ETFs, it also includes a Seed field, which reflects seed capital figures tracked by Farside. All values are denominated in US$m.
How far back does the historical data go for each asset?+
Bitcoin ETF data in get_bitcoin_etf_flows_all begins January 2024, aligned with the launch of US spot Bitcoin ETFs. Ethereum ETF data in get_ethereum_etf_flows_all begins July 2024. Solana ETF data in get_solana_etf_flows reflects the more recent approval of those products, so its history is shorter.
Does the API provide intraday or real-time flow updates throughout the trading day?+
Not currently. All endpoints return daily flow records, and the recent endpoints reflect the most recently published trading days rather than intraday updates. You can fork this API on Parse and revise it to add polling logic targeting more frequent updates if the source publishes intraday figures.
Does the API cover non-US ETF products, such as European or Canadian Bitcoin ETFs?+
Not currently. Coverage is limited to US spot ETF products for Bitcoin, Ethereum, and Solana as tracked by farside.co.uk. You can fork this API on Parse and revise it to add an endpoint targeting any additional non-US ETF data Farside publishes.
Page content last updated . Spec covers 6 endpoints from farside.co.uk.
Related APIs in Crypto Web3See all →
blackrock.com API
Access comprehensive BlackRock iShares ETF data to research fund performance, holdings, fees, and sector allocations, plus search and compare specific ETFs. Monitor investment details like distributions, key characteristics, and broad market indices all in one place.
nasdaq.com API
Track real-time and historical stock prices, ETF and mutual fund quotes, cryptocurrency data, and comprehensive company financials including earnings, dividends, and SEC filings all from one source. Research market trends with institutional holdings, short interest data, retail trading activity, and market movers to make informed investment decisions.
cfbenchmarks.com API
Monitor real-time cryptocurrency prices and market cap data—both free float and full valuations—to screen and compare digital assets. Access comprehensive pricing information across the crypto market to inform your investment decisions and portfolio analysis.
vaneck.com.au API
Access real-time NAV prices, last trade prices, and historical performance data for VanEck Australia ETFs and indices. Retrieve fund snapshots, comprehensive performance tables, and price metrics for any ASX-listed VanEck ETF.
justetf.com API
Search and compare thousands of ETFs listed on justETF, with access to detailed profiles, key metrics (TER, fund size, asset class, currency), and full monthly performance history. Filter results by asset class, fund currency, expense ratio, and more.
ishares.com API
Access comprehensive iShares ETF information including fund holdings, performance metrics, sector allocation, and investment literature all in one place. Search and compare ETFs to find the right funds for your portfolio and get detailed breakdowns of what's inside each fund.
bitcointreasuries.net API
Track which companies, governments, and ETFs hold Bitcoin and monitor their portfolio sizes in real-time. Get current BTC prices, detailed entity holdings, financial metrics, and latest news across public companies, private companies, and government treasuries all in one place.
cryptocraft.com API
Track real-time cryptocurrency prices across 20+ exchanges, analyze historical OHLC data and coin fundamentals, and stay informed with upcoming economic events and market news. Monitor thousands of coins and instruments to make data-driven investment decisions.