Discover/ishares.com API
live

ishares.com APIishares.com

Access iShares ETF listings, holdings, performance metrics, sector allocations, and fund documents via a structured JSON API. Covers 6 endpoints.

Endpoints
6
Updated
10d ago
Try it
Maximum number of ETFs to return.
Filter by asset class. Accepted values: Equity, Fixed Income, Digital Assets, Commodities,
api.parse.bot/scraper/5574216d-9f38-48cb-9912-dcabc247cc10/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/5574216d-9f38-48cb-9912-dcabc247cc10/list_etfs?limit=3&asset_class=Equity' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Retrieve a list of all iShares ETFs with key metadata including ticker, name, asset class, net assets, expense ratio, and YTD return. Optionally filter by asset class and limit results.

Input
ParamTypeDescription
limitintegerMaximum number of ETFs to return.
asset_classstringFilter by asset class. Accepted values: Equity, Fixed Income, Digital Assets, Commodities, Real Estate, Multi-asset.
Response
{
  "type": "object",
  "fields": {
    "etfs": "array of ETF summary objects with portfolio_id, ticker, name, isin, cusip, inception_date, asset_class, net_assets, expense_ratio, ytd_return, product_page_url",
    "total": "integer total count of returned ETFs"
  },
  "sample": {
    "data": {
      "etfs": [
        {
          "isin": "US46429B6719",
          "name": "iShares MSCI China ETF",
          "cusip": "46429B671",
          "ticker": "MCHI",
          "net_assets": 6882213092.98,
          "ytd_return": -2.71,
          "asset_class": "Equity",
          "portfolio_id": "239619",
          "expense_ratio": 0.59,
          "inception_date": "Mar 29, 2011",
          "product_page_url": "/us/products/239619/ishares-msci-china-etf"
        }
      ],
      "total": 1
    },
    "status": "success"
  }
}

About the ishares.com API

The iShares API provides structured access to BlackRock's iShares ETF catalog across 6 endpoints, returning fund metadata, per-holding detail, and performance figures. The get_etf_holdings endpoint delivers a full holdings array per fund — including weight, market value, CUSIP, ISIN, SEDOL, and sector classification for each position. The list_etfs endpoint supports filtering by asset class across Equity, Fixed Income, Commodities, Real Estate, Digital Assets, and more.

Fund Discovery and Search

The list_etfs endpoint returns all iShares ETFs as an array of summary objects. Each entry includes portfolio_id, ticker, isin, cusip, inception_date, asset_class, net_assets, expense_ratio, and YTD return. The optional asset_class parameter narrows results to a specific category (e.g., Equity or Fixed Income). The search_etfs endpoint accepts a free-text query matched against ticker symbols and fund names, returning portfolio_id, ticker, name, asset_class, and a product_page_url for each match.

Holdings and Sector Breakdown

The get_etf_holdings endpoint accepts either a ticker (e.g., IVV) or a portfolio_id and returns the complete holdings list with per-position fields: ticker, name, sector, asset_class, market_value, weight, shares, cusip, isin, sedol, price, and currency. An optional as_of_date parameter (format YYYYMMDD) retrieves historical snapshots; omitting it returns the most recent available date. Holdings data is not available for all fund types — commodity trusts may return an upstream error. The get_etf_sector_allocation endpoint derives sector weights from the same underlying holdings, returning an array of {sector, weight} pairs sorted by weight descending. This endpoint is primarily useful for equity ETFs.

Performance and Fund Details

The get_etf_details endpoint returns nav, nav_as_of, yield_12m, expense_ratio, asset_class, and a performance object with annualized returns at YTD, 1-year, 3-year, 5-year, and 10-year horizons. Identifiers (isin, cusip, portfolio_id) are also included, making it straightforward to cross-reference results with other data sources.

Literature and Documents

The get_etf_literature endpoint returns available regulatory and marketing documents for a given ETF — including Fact Sheets, Prospectuses, Summary Prospectuses, Annual Reports, Semi-Annual Reports, and Product Briefs. Each document object includes a type field and a download or reference link. At least one of ticker or portfolio_id is required across all detail endpoints.

Common use cases
  • Screen equity ETFs by expense ratio and YTD return using list_etfs filtered to asset_class=Equity.
  • Build a holdings overlap tool by comparing get_etf_holdings arrays across two or more ETFs.
  • Track sector drift in a portfolio by polling get_etf_sector_allocation for held ETFs over time.
  • Retrieve prospectus and annual report links via get_etf_literature for compliance or due-diligence workflows.
  • Cross-reference ETF performance at 3-year and 5-year horizons using the performance object from get_etf_details.
  • Resolve an ETF ticker to its ISIN and CUSIP for downstream reconciliation with custody or accounting systems.
  • Identify historical holdings snapshots by passing as_of_date to get_etf_holdings for a point-in-time composition view.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 iShares have an official developer API?+
BlackRock does not publish a public developer API for iShares fund data. The iShares website (ishares.com) exposes fund information through its consumer-facing site, but there is no documented, credentialed API offered to third-party developers.
What does `get_etf_holdings` return, and can I retrieve historical data?+
The endpoint returns the complete holdings list for a specified ETF, with fields including weight, market_value, shares, price, currency, sector, and multiple security identifiers (cusip, isin, sedol). To get a historical snapshot rather than the most recent data, pass the as_of_date parameter in YYYYMMDD format (e.g., 20250101). Note that holdings data is unavailable for some fund types such as commodity trusts, which return an upstream error.
Does the API cover iShares ETFs listed outside the United States?+
The current endpoints reflect the iShares fund catalog as presented on ishares.com, which is primarily the US-listed product range. ETFs listed on European or Asia-Pacific exchanges are not currently covered. You can fork this API on Parse and revise it to point at regional iShares sites (e.g., the UCITS fund range) and add the missing coverage.
Is real-time or intraday price data available?+
No intraday or real-time market price data is exposed. The get_etf_details endpoint returns nav and nav_as_of reflecting the most recent end-of-day net asset value, not live bid/ask or intraday trade prices. You can fork this API on Parse and revise it to integrate a market data source alongside the fund metadata endpoints.
Can I filter `get_etf_holdings` by sector or country directly?+
The endpoint returns the full holdings array without server-side filtering by sector or country. Each holding object includes a sector field, so client-side filtering is straightforward. For a pre-aggregated sector view, get_etf_sector_allocation returns sector weights directly without requiring you to aggregate the raw holdings yourself.
Page content last updated . Spec covers 6 endpoints from ishares.com.
Related APIs in FinanceSee all →
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
guba.eastmoney.com API
Access Chinese stock discussion posts and comments from Eastmoney's community platform to monitor investor sentiment, search board discussions, and retrieve detailed post information and stock board metadata. Get real-time insights into what traders are discussing about specific stocks through posts, replies, and board analytics.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
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.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.