Discover/justetf.com API
live

justetf.com APIjustetf.com

Access justETF data via API: search thousands of ETFs, retrieve profiles with TER and fund size, and pull full monthly performance history by ISIN.

Endpoints
4
Updated
3mo ago
Try it
Search query term (ISIN, WKN, ticker, or name)
Pagination offset (0-based index of first result)
Number of results per page
Filter by asset class (e.g. 'class-equity', 'class-bonds')
Filter by fund currency (e.g. 'EUR', 'USD')
api.parse.bot/scraper/80344a09-fa70-4748-8f48-f70c29c84c59/<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/80344a09-fa70-4748-8f48-f70c29c84c59/search_etfs?query=S%26P+500&start=0&length=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Search for ETFs on justETF with optional filters for asset class and fund currency. Returns paginated results sorted by fund size descending, including key metrics like TER, fund size, and YTD return.

Input
ParamTypeDescription
querystringSearch query term (ISIN, WKN, ticker, or name)
startintegerPagination offset (0-based index of first result)
lengthintegerNumber of results per page
asset_classstringFilter by asset class (e.g. 'class-equity', 'class-bonds')
fund_currencystringFilter by fund currency (e.g. 'EUR', 'USD')
Response
{
  "type": "object",
  "fields": {
    "items": "array of ETF summary objects with isin, name, ter, fund_currency, fund_size, ticker, wkn, distribution_policy, replication_method, inception_date, ytd_return, sustainable",
    "total": "integer total number of matching ETFs"
  },
  "sample": {
    "data": {
      "items": [
        {
          "ter": "0.07%",
          "wkn": "A0YEDG",
          "isin": "IE00B5BMR087",
          "name": "iShares Core S&P 500 UCITS ETF USD (Acc)",
          "ticker": "SXR8",
          "fund_size": "125,494",
          "ytd_return": "10.78%",
          "sustainable": "No",
          "fund_currency": "USD",
          "inception_date": "19.05.10",
          "replication_method": "Full replication",
          "distribution_policy": "Accumulating"
        }
      ],
      "total": 3394
    },
    "status": "success"
  }
}

About the justetf.com API

The justETF API exposes 4 endpoints covering ETF search, detailed profiles, monthly performance history, and cost-based screening. The search_etfs endpoint returns paginated results with key metrics — TER, fund size, distribution policy, replication method, and YTD return — filterable by asset class and fund currency. Each endpoint is keyed by ISIN, the standard identifier for ETFs listed across European and global exchanges.

Search and Filter ETFs

The search_etfs endpoint accepts a free-text query (ISIN, WKN, ticker, or fund name) alongside optional filters for asset_class (e.g. class-equity, class-bonds) and fund_currency (e.g. EUR, USD). Results are paginated via start and length parameters and sorted by fund size descending. Each item in the response includes isin, name, ter, fund_currency, fund_size, ticker, wkn, distribution_policy, and replication_method.

ETF Profile Data

get_etf_profile takes a 12-character isin and returns the full metadata record for that fund: ter, wkn, isin, name, ticker, fund_size, ytd_return, sustainable (Yes/No), fund_currency, and inception_date formatted as DD.MM.YY. This is useful for building fund comparison tables or populating detail pages without additional transformation.

Monthly Performance History

get_monthly_performance returns the complete monthly return history for a given ISIN as an array of objects, each carrying year, month (Jan–Dec label), and return_pct (numeric percentage). Coverage extends from the fund's inception date to the most recent month available, making it suitable for generating heatmap visualisations or running time-series analysis.

Equity Screening by Cost

specialized_equity_filter provides a pre-configured screen for equity ETFs with a maximum TER threshold, returning results sorted by fund size with a count field and the same summary object structure as search_etfs. Use the limit parameter to control result volume. This endpoint is particularly useful for building low-cost equity fund screeners.

Common use cases
  • Build a fund comparison table using TER, fund size, and YTD return from search_etfs
  • Generate a monthly performance heatmap for any ETF using get_monthly_performance return data
  • Screen for low-cost equity ETFs denominated in EUR using specialized_equity_filter
  • Populate ETF detail pages with inception date, replication method, and sustainability flag from get_etf_profile
  • Track distribution policy (accumulating vs distributing) across a watchlist of ISINs
  • Filter bond ETFs by fund currency to identify USD-denominated fixed-income options via search_etfs
  • Backtest or analyse annual return patterns using the full historical monthly return series per ISIN
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 justETF have an official developer API?+
justETF does not publish a documented public developer API. There is no official API portal, SDK, or published endpoint documentation available to third-party developers.
What identifiers can I use to look up an ETF?+
search_etfs accepts a query parameter that matches against ISIN, WKN, ticker symbol, or fund name. For get_etf_profile and get_monthly_performance, you must supply the 12-character ISIN directly — for example, IE00B5BMR087. WKN and ticker resolution is only available through the search endpoint.
Does the API return historical NAV prices or daily price series?+
Not currently. The API covers monthly return percentages via get_monthly_performance and summary metrics like YTD return and fund size, but does not expose daily or historical NAV price series. You can fork this API on Parse and revise it to add an endpoint targeting daily price data.
How does pagination work in `search_etfs`?+
Pagination uses a start offset (0-based) and a length parameter for page size. The response also includes a total integer indicating the full count of matching ETFs, so you can calculate how many pages exist and iterate accordingly.
Does the API cover ETF holdings or sector/country breakdowns?+
Not currently. The API returns fund-level metadata (TER, fund size, replication method, inception date, sustainability flag) and monthly return history, but does not expose underlying holdings, sector weights, or country allocation data. You can fork this API on Parse and revise it to add endpoints for those breakdown views.
Page content last updated . Spec covers 4 endpoints from justetf.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.