Discover/finanzen API
live

finanzen APIfinanzen.net

Access finanzen.net index components, live asset prices, and historical OHLCV data via 3 structured endpoints. Query by name, ISIN, or WKN.

Endpoint health
verified 2d ago
get_index_components
get_current_price
get_historical_prices
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the finanzen API?

The finanzen.net API exposes 3 endpoints covering index composition, current quotes, and historical daily price data for stocks, indices, and commodities. Use get_index_components to retrieve every constituent of an index like DAX or NASDAQ 100 along with real-time price and percentage change, or call get_current_price with a name, ISIN, or WKN to get a live quote for any supported asset.

Try it
The slug or ISIN of the index (e.g., 'dax', 'nasdaq_100', 'mdax', 'DE0008469008').
api.parse.bot/scraper/883a46ba-7440-45e2-ad4b-7375cd27d9e5/<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/883a46ba-7440-45e2-ad4b-7375cd27d9e5/get_index_components?index_slug=dax' \
  -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 finanzen-net-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.finanzen_net_api import Finanzen, IndexComponent, Asset, PriceRecord, IndexSlug

client = Finanzen()

# Get DAX index components using the IndexSlug enum
for component in client.index(IndexSlug.DAX).components():
    print(component.name, component.isin, component.current_price, component.percentage_change)

# Get current price for an asset by name
apple = client.assets.get(query="US0378331005")
print(apple.name, apple.isin, apple.symbol, apple.current_price)

# Get historical prices for the fetched asset
for record in apple.history(start_date="01.05.2026", end_date="31.05.2026"):
    print(record.date, record.open, record.high, record.low, record.close, record.volume)
All endpoints · 3 totalmissing one? ·

Get the components of a financial index (e.g., DAX, NASDAQ 100). Returns all constituent stocks with their current price and year-to-date percentage change. The index_slug accepts common index identifiers like 'dax', 'nasdaq_100', 'mdax', or an ISIN such as 'DE0008469008'. The full list of components is returned in a single page.

Input
ParamTypeDescription
index_slugstringThe slug or ISIN of the index (e.g., 'dax', 'nasdaq_100', 'mdax', 'DE0008469008').
Response
{
  "type": "object",
  "fields": {
    "components": "array of index component objects each containing name, isin, slug, current_price, and percentage_change"
  },
  "sample": {
    "data": {
      "components": [
        {
          "isin": "DE000A1EWWW0",
          "name": "adidas",
          "slug": "adidas-aktie",
          "current_price": "171,55",
          "percentage_change": "-21,62"
        }
      ]
    },
    "status": "success"
  }
}

About the finanzen API

Index Components and Live Quotes

The get_index_components endpoint accepts an index_slug parameter — either a human-readable slug like dax or nasdaq_100, or a direct ISIN such as DE0008469008. It returns an array of constituent objects, each containing name, isin, slug, current_price, and percentage_change. This makes it straightforward to build index trackers or screen all members of a benchmark in a single call.

The get_current_price endpoint accepts a free-text query field that can be an asset name (e.g., Apple), an ISIN (e.g., US0378331005), or a WKN (e.g., 846900). It resolves to a single asset and returns name, isin, symbol, and current_price. This endpoint works across asset classes — stocks, indices, and commodities are all queryable through the same interface.

Historical Price Data

The get_historical_prices endpoint returns daily OHLCV records for a given asset. The query parameter accepts the same name/ISIN/WKN format as the price lookup. Date range is controlled via start_date and end_date in DD.MM.YYYY format; omitting both defaults to the trailing 30 days. Each record in the history array includes date, open, high, low, close, and volume. The response also carries name and isin at the top level for confirmation.

Identifiers and Coverage

All three endpoints are oriented around standard European financial identifiers — ISIN and WKN — alongside common asset names. finanzen.net is a German-language financial portal with strong coverage of European markets, so German and EU-listed instruments are particularly well represented. Queries using exact ISINs or WKNs tend to be the most unambiguous way to target a specific asset.

Reliability & maintenanceVerified

The finanzen API is a managed, monitored endpoint for finanzen.net — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when finanzen.net 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 finanzen.net 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
2d ago
Latest check
3/3 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 DAX or NASDAQ 100 holdings dashboard using get_index_components to pull all constituents and their current percentage changes.
  • Monitor live prices for a personal watchlist by looping over a set of ISINs with get_current_price.
  • Back-test a simple moving average strategy by fetching daily OHLCV history via get_historical_prices with a custom start_date and end_date.
  • Detect index rebalancing events by periodically comparing the constituent list returned by get_index_components.
  • Enrich a portfolio tracker with current symbol, isin, and current_price fields for each held asset.
  • Export historical close prices for European equities to a spreadsheet for offline analysis using the history array from get_historical_prices.
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 finanzen.net offer an official developer API?+
finanzen.net does not publish a documented public developer API. This Parse API provides structured programmatic access to the data the site exposes.
What does `get_index_components` return and which indices are supported?+
The endpoint returns an array of constituent objects, each with name, isin, slug, current_price, and percentage_change. You can query by slug (e.g., dax, nasdaq_100) or by ISIN. Coverage depends on which indices finanzen.net lists; major European and US indices like DAX, MDAX, and NASDAQ 100 are typically available.
How specific is the asset search in `get_current_price`?+
The endpoint accepts a name, ISIN, or WKN string and resolves it to a single asset, returning name, isin, symbol, and current_price. Using an exact ISIN or WKN is the most reliable way to avoid ambiguity when multiple assets share a similar name.
Does the API return intraday (tick or hourly) price data?+
No. get_historical_prices returns daily OHLCV records only. Intraday granularity is not currently exposed. You can fork this API on Parse and revise it to add an intraday endpoint if finanzen.net surfaces that data.
Are fundamental data fields like P/E ratio, earnings, or dividends available?+
Not currently. The API covers live prices, percentage changes, and daily OHLCV history. Fundamental metrics are not included in any of the three endpoints. You can fork this API on Parse and revise it to add an endpoint targeting those data points.
Page content last updated . Spec covers 3 endpoints from finanzen.net.
Related APIs in FinanceSee all →
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.
onvista.de API
Access live derivatives, indices, and market data from onvista.de to search financial instruments, retrieve knockout product details, and monitor market overviews. Build financial applications that pull real-time pricing and instrument information for trading and investment analysis.
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.
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.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
statusinvest.com.br API
Search and analyze Brazilian stocks with real-time market data, including detailed financial indicators, historical price movements, and dividend information. Track stock performance and investment metrics all in one place.
barchart.com API
Monitor live stock quotes and commodity prices, analyze options chains with gamma exposure data, and access historical market time series to track top-performing stocks. Use real-time and historical data to make informed trading and investment decisions across equities and commodities.
yahoofinance.com API
Access live stock quotes, historical price data, company profiles, and financial news for any ticker symbol. Supports real-time market data, OHLCV history across configurable intervals, detailed company fundamentals, and news aggregation across global exchanges.