Discover/onvista.de API
live

onvista.de APIonvista.de

Access knock-out certificates, instrument search, and major index quotes from onvista.de via a clean JSON API with 4 endpoints.

Endpoints
4
Updated
3mo ago
Try it
Page number (zero-based).
Field to sort by. Accepted values: knockOutAbs, gearingAsk, spread.
Direction filter. Accepted values: Long, Short.
Sort direction. Accepted values: ASC, DESC.
Results per page.
Filter by issuer ID (e.g. 53881 for BNP Paribas).
Maximum K.O.-Schwelle value filter.
Minimum K.O.-Schwelle value filter.
Underlying instrument type (e.g. INDEX, STOCK).
Underlying instrument ID (e.g. 20735 for DAX). Must be used together with underlying_type.
api.parse.bot/scraper/4ea9fae3-875c-4620-89a6-e7017087e553/<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/4ea9fae3-875c-4620-89a6-e7017087e553/get_knockout_list?page=0&per_page=3&underlying_type=INDEX&underlying_value=20735' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Get paginated list of Knock-Out certificates with sorting and filtering options. Returns certificates matching the given criteria sorted by the specified field.

Input
ParamTypeDescription
pageintegerPage number (zero-based).
sortstringField to sort by. Accepted values: knockOutAbs, gearingAsk, spread.
typestringDirection filter. Accepted values: Long, Short.
orderstringSort direction. Accepted values: ASC, DESC.
per_pageintegerResults per page.
id_issuerstringFilter by issuer ID (e.g. 53881 for BNP Paribas).
ko_schwelle_maxnumberMaximum K.O.-Schwelle value filter.
ko_schwelle_minnumberMinimum K.O.-Schwelle value filter.
underlying_typestringUnderlying instrument type (e.g. INDEX, STOCK).
underlying_valuestringUnderlying instrument ID (e.g. 20735 for DAX). Must be used together with underlying_type.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "total": "integer, total number of matching certificates",
    "results": "array of certificate objects with wkn, isin, name, issuer, id_instrument, ko_schwelle, strike, underlying_name, underlying_isin, gearing, spread, bid, ask, last, datetime_last, maturity, type",
    "per_page": "integer, results per page"
  },
  "sample": {
    "data": {
      "page": 0,
      "total": 761857,
      "results": [
        {
          "ask": 0.92,
          "bid": 0.91,
          "wkn": "BY4T43",
          "isin": "DE000BY4T432",
          "last": 0.915,
          "name": "UNLIMITED TURBO LONG AUF ASTRAZENECA PLC",
          "type": "CALL",
          "issuer": "BNP Paribas",
          "spread": 0.01,
          "strike": 1300275.29,
          "gearing": 17.21,
          "maturity": null,
          "ko_schwelle": 1300275.29,
          "datetime_last": "2026-05-14T15:29:50.842+00:00",
          "id_instrument": "328953171",
          "underlying_isin": "GB0009895292",
          "underlying_name": "AstraZeneca"
        }
      ],
      "per_page": 3
    },
    "status": "success"
  }
}

About the onvista.de API

The onvista.de API exposes 4 endpoints covering German derivatives data, instrument search, and live market overviews drawn from onvista.de. The get_knockout_list endpoint returns paginated knock-out certificates filterable by direction (Long/Short), issuer, and K.O.-Schwelle thresholds. Response objects include ISIN, WKN, strike, gearing, and underlying details — the core fields needed to screen and compare structured products programmatically.

Knock-Out Certificate Data

get_knockout_list returns a paginated array of knock-out certificates with fields including wkn, isin, name, issuer, ko_schwelle, strike, underlying_name, and underlying_isin. You can filter by type (Long or Short), id_issuer (e.g. 53881 for BNP Paribas), and K.O.-Schwelle range via ko_schwelle_min / ko_schwelle_max. Sorting is supported on knockOutAbs, gearingAsk, or spread in either ASC or DESC order. Pagination is zero-based via the page parameter; the response includes total and per_page so you can walk all pages.

Instrument Detail and Search

get_knockout_detail accepts an entity_value (the id_instrument from list or search results) and returns a structured snapshot: a quote object with bid, ask, last, high, low, and performancePct; an instrument object with entityType, isin, wkn, name, and displayType; a derivativesFigure object with gearing, spread, premium, and moneyness; a derivativesDetails object covering exercise right, settlement type, and category; and a derivativesUnderlyingList object with barrier and underlying instrument data.

search_instruments accepts a free-text query (name, WKN, or ISIN) plus an optional limit and returns matched instruments with name, isin, wkn, entity_value, and display_type across all asset classes including stocks, indices, ETFs, futures, and derivatives.

Market Overview

get_market_overview takes no parameters and returns an array of major market instruments from the onvista.de homepage. Each object carries name, isin, wkn, entity_value, price, change_pct, and datetime — suitable for building a quick-glance dashboard of DAX, S&P 500, and other tracked indices.

Common use cases
  • Screen knock-out certificates by gearing or spread to identify candidates for short-term derivatives strategies
  • Filter Long vs. Short knock-outs from a specific issuer within a defined K.O.-Schwelle range
  • Look up full derivative details — including moneyness and barrier info — for a known ISIN or WKN
  • Build a market dashboard displaying live prices and daily performance for major indices
  • Resolve a WKN or name to an entity_value for downstream detail lookups using search_instruments
  • Monitor bid/ask spreads and gearing across knock-out products to track intraday derivative conditions
  • Combine search results with get_knockout_detail to enrich a watchlist with live quote snapshots
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 onvista.de offer an official developer API?+
onvista.de does not publish a documented public developer API or offer API keys to third-party developers. This Parse API provides structured JSON access to the same financial data available on the site.
What distinguishes the response from get_knockout_detail versus get_knockout_list?+
get_knockout_list returns summary fields (wkn, isin, name, ko_schwelle, strike, gearing) across many certificates for screening purposes. get_knockout_detail targets one instrument by entity_value and returns deeper data: live quote fields (bid, ask, last, performancePct), calculated figures (gearing, spread, premium, moneyness), product metadata (exercise right, settlement type), and full underlying barrier details.
Does the API cover warrants, discount certificates, or other structured products beyond knock-outs?+
The dedicated list and detail endpoints cover knock-out certificates specifically. search_instruments returns matching instruments across all asset types including derivatives, but there is no dedicated list or filter endpoint for warrants or discount certificates. You can fork this API on Parse and revise it to add endpoints covering those product types.
How fresh is the price data returned by these endpoints?+
Quote fields such as bid, ask, last, and change_pct reflect the data available on onvista.de at the time of the request. onvista.de displays exchange-delayed and real-time prices depending on the instrument and market session, so freshness is tied to what the source publishes — not a fixed polling interval.
Can I retrieve historical price series or time-series chart data through this API?+
Not currently. The API returns current snapshots — quote, figures, and market overview — without historical OHLCV series or intraday tick data. You can fork this API on Parse and revise it to add a historical price endpoint if that data is available from the source.
Page content last updated . Spec covers 4 endpoints from onvista.de.
Related APIs in FinanceSee all →
mazda.ca API
Find current vehicle deals, financing rates, lease options, and incentives across all Mazda Canada models and trims, with pricing tailored to your province. Get instant payment quotes to compare your options and discover the best offers available.
13f.info API
13f.info API
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.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
customs.gov.mv API
Check import/export duties, tariff classifications, and exchange rates for Maldives customs compliance, plus track vessel movements, company registrations, and declaration statuses. Get real-time data directly from the official customs portal to streamline your trade and logistics operations.
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.
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.