Discover/justETF API
live

justETF APIjustetf.com

Access justETF data via API: search thousands of ETFs, retrieve profiles, TER, fund size, monthly performance heatmaps, and daily price history by ISIN.

This API takes change requests — .
Endpoint health
verified 15h ago
search_etfs
specialized_equity_filter
get_etf_price
get_etf_profile
get_monthly_performance
6/6 passing latest checkself-healing
Endpoints
6
Updated
13d ago

What is the justETF API?

The justETF API exposes 6 endpoints covering ETF search, profile data, pricing, and historical performance from justETF's database. Use search_etfs to query by ISIN, WKN, ticker, or name with filters for asset class and fund currency, or call get_etf_profile to pull key metrics — TER, fund size, inception date, YTD return, and replication method — for any ETF by its 12-character ISIN.

This call costs3 credits / call— charged only on success
Try it
Search query term (ISIN, WKN, ticker, or name)
Pagination offset (0-based index of first result)
Number of results per page (max 100)
Filter by asset class. Confirmed values: 'class-equity', 'class-bonds'. Additional values may be accepted by the site.
Filter by fund currency ISO code (e.g. 'EUR', 'USD', 'GBP', 'CHF')
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.
Call it over HTTPgrab 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&asset_class=class-equity&fund_currency=USD' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalmissing one? ·

Full-text search over justETF's ETF database. Matches ISIN, WKN, ticker, or name against the query. Results are sorted by fund size descending. Supports offset-based pagination via start/length. Filters narrow results by asset class or fund currency. Returns total count and a page of ETF summaries.

Input
ParamTypeDescription
querystringSearch query term (ISIN, WKN, ticker, or name)
startintegerPagination offset (0-based index of first result)
lengthintegerNumber of results per page (max 100)
asset_classstringFilter by asset class. Confirmed values: 'class-equity', 'class-bonds'. Additional values may be accepted by the site.
fund_currencystringFilter by fund currency ISO code (e.g. 'EUR', 'USD', 'GBP', 'CHF')
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": "127,028",
          "ytd_return": "9.32%",
          "sustainable": "No",
          "fund_currency": "USD",
          "inception_date": "19.05.10",
          "replication_method": "Full replication",
          "distribution_policy": "Accumulating"
        }
      ],
      "total": 3442
    },
    "status": "success"
  }
}

About the justETF API

Search and Filter ETFs

search_etfs accepts a free-text query (matched against ISIN, WKN, ticker, or fund name) and returns paginated results sorted by fund size descending. Use the start and length parameters for offset-based pagination (up to 100 results per page). The asset_class filter accepts confirmed values like class-equity and class-bonds; fund_currency takes ISO codes such as EUR, USD, or GBP. Each result object includes isin, name, ter, fund_currency, fund_size, ticker, wkn, distribution_policy, and replication_method. specialized_equity_filter is a pre-configured screen: equity ETFs denominated in EUR with TER below 0.3%, sorted by fund size, with a limit parameter to control result count.

ETF Profiles and Performance

get_etf_profile returns a single ETF's full metadata by ISIN: ter, fund_size, ytd_return, sustainable, fund_currency, inception_date, replication_method, and distribution_policy. The inception_date is formatted as DD.MM.YY. If the ISIN is not found in the index, the endpoint returns a stale_input status rather than an error.

get_monthly_performance returns a full historical heatmap as an array of {year, month, return_pct} objects covering every month since the ETF's inception. Month names are abbreviated Jan–Dec, and return_pct is a decimal percentage. This is useful for visualizing seasonal patterns or building calendar-style return grids.

Pricing and Price History

get_etf_price returns the latest XETRA quote for an ETF by ISIN: price, day_change_amt, day_change_pct, previous_date, 52w_low, and 52w_high, all in EUR. get_etf_price_history delivers a daily time series over a caller-specified date range using from_date and to_date (YYYY-MM-DD). It defaults to the last 30 days and includes weekend entries that carry forward the prior Friday close. All prices are in EUR.

Reliability & maintenanceVerified

The justETF API is a managed, monitored endpoint for justetf.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when justetf.com 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 justetf.com 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
15h 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
  • Build an ETF screener filtered by asset class, fund currency, and expense ratio using search_etfs and specialized_equity_filter
  • Display a fund fact sheet with TER, fund size, inception date, and YTD return pulled from get_etf_profile
  • Render a monthly return heatmap calendar for any ETF using get_monthly_performance historical data
  • Track daily NAV and day-over-day change for a watchlist of ETFs via get_etf_price
  • Back-test or chart ETF price trends over a custom date range with get_etf_price_history
  • Identify low-cost EUR-denominated equity ETFs automatically with specialized_equity_filter
  • Monitor 52-week price range alongside current quote to assess recent price positioning
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does justETF have an official public developer API?+
justETF does not publish an official public developer API or document one for third-party use. This Parse API provides structured programmatic access to justETF data without requiring a separate justETF account or API key.
What does `get_etf_profile` return and how is it different from `search_etfs`?+
get_etf_profile takes a single ISIN and returns a dedicated profile object with fields including ytd_return, sustainable, inception_date, and replication_method. search_etfs returns summary objects for multiple ETFs but is designed for discovery and filtering across the full database rather than deep detail on a single fund.
How does `get_etf_price_history` handle weekends and market holidays?+
The endpoint returns one entry per calendar day including weekends. Weekend entries repeat the prior trading day's close price rather than being omitted. You should filter for distinct prices or trading days if you need only days when the market was open.
Does the API cover ETFs listed on exchanges other than XETRA?+
get_etf_price and get_etf_price_history currently return EUR-denominated prices from XETRA only. Other exchanges such as LSE, SIX, or Euronext are not covered by these endpoints. You can fork this API on Parse and revise it to add endpoints targeting alternative exchanges.
Can I retrieve holdings or sector breakdown data for an ETF?+
Not currently. The API covers profile metadata, monthly performance, and price data. Holdings lists, sector weights, and country allocations are not exposed by any current endpoint. You can fork this API on Parse and revise it to add a holdings endpoint if that data is available from the source.
Page content last updated . Spec covers 6 endpoints from justetf.com.
Related APIs in FinanceSee 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.
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.
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.
boerse-stuttgart.de API
Search Börse Stuttgart securities by name, WKN, or ISIN and retrieve live quotes, detailed instrument pages, index snapshots with constituents, and warrant (Optionsschein) listings for a chosen underlying.
finanzen.net API
Search for stocks and assets, retrieve live prices, view index components, and access historical price data to track market performance and make informed investment decisions. Monitor real-time market quotes and analyze past price trends across multiple financial instruments on one platform.
ls-tc.de API
Search for stocks and retrieve live quotes and historical price data from Lang & Schwarz TradeCenter to monitor market performance and trading hours. Access comprehensive market overviews and detailed price history to inform your investment decisions.
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.
farside.co.uk API
Access real-time and historical cryptocurrency ETF flow data — including Bitcoin, Ethereum, and Solana — covering daily inflows and outflows across all US spot ETF tickers. Retrieve fund-level metrics such as fees, staking status, seed capital, and summary statistics, plus public information on the Farside Equity Fund.