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.
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'
Get paginated list of Knock-Out certificates with sorting and filtering options. Returns certificates matching the given criteria sorted by the specified field.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number (zero-based). |
| sort | string | Field to sort by. Accepted values: knockOutAbs, gearingAsk, spread. |
| type | string | Direction filter. Accepted values: Long, Short. |
| order | string | Sort direction. Accepted values: ASC, DESC. |
| per_page | integer | Results per page. |
| id_issuer | string | Filter by issuer ID (e.g. 53881 for BNP Paribas). |
| ko_schwelle_max | number | Maximum K.O.-Schwelle value filter. |
| ko_schwelle_min | number | Minimum K.O.-Schwelle value filter. |
| underlying_type | string | Underlying instrument type (e.g. INDEX, STOCK). |
| underlying_value | string | Underlying instrument ID (e.g. 20735 for DAX). Must be used together with underlying_type. |
{
"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.
- 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
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.