Discover/justETF API
live

justETF 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.

Endpoint health
verified 3d ago
search_etfs
get_monthly_performance
get_etf_profile
specialized_equity_filter
4/4 passing latest checkself-healing
Endpoints
4
Updated
22d ago

What is the justETF 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.

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'
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 justetf-com-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.

"""justETF SDK walkthrough — search, profile, and performance data."""
from parse_apis.justetf_api import JustETF, ETFNotFound

client = JustETF()

# Search for S&P 500 ETFs, capped at 3 results
for etf in client.etfs.search(query="S&P 500", asset_class="class-equity", limit=3):
    print(etf.name, etf.ter, etf.fund_currency, etf.fund_size)

# Drill into one ETF by ISIN
detail = client.etfs.get(isin="IE00B5BMR087")
print(detail.name, detail.ter, detail.replication_method, detail.distribution_policy)

# Get monthly performance for that ETF
report = detail.performance()
for month in report.monthly_returns[:6]:
    print(month.year, month.month, month.return_pct)

# Low-cost EUR equity filter
for etf in client.etfs.filter_low_cost_eur(limit=3):
    print(etf.name, etf.ter, etf.fund_currency)

# Typed error handling for a non-existent ISIN
try:
    client.etfs.get(isin="XX000000000X")
except ETFNotFound as exc:
    print(f"ETF not found: {exc.isin}")

print("exercised: etfs.search / etfs.get / etf.performance / etfs.filter_low_cost_eur")
All endpoints · 4 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

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.

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
3d ago
Latest check
4/4 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 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,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 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 →
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.
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.
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.
payoff.ch API
Search through 177,000+ structured financial products with advanced filtering to find Capital Protection, Yield Enhancement, Participation, Credit Risk, and Leverage instruments that match your criteria. Get comprehensive product details including terms, market data, key figures, and underlying instrument information for informed investment decisions.
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.