Euronext Quotes by ISIN & Market avatar

Euronext Quotes by ISIN & Market

Pricing

from $0.50 / 1,000 results

Go to Apify Store
Euronext Quotes by ISIN & Market

Euronext Quotes by ISIN & Market

Extract detailed Euronext quotes by combining ISINs with market codes (ETFP, XPAR, XAMS and more). It returns normalized JSON fields like price, change, currency, timestamp, and instrument metadata, ready for analytics pipelines and trading automations

Pricing

from $0.50 / 1,000 results

Rating

0.0

(0)

Developer

njoylab

njoylab

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 months ago

Last modified

Share

Euronext Detailed Quote Scraper

Scrape real-time quote data from Euronext.
Get instrument name, ISIN, market code, price, change percentage, and currency — all pushed to a clean, flat Apify Dataset.

What does it do?

The actor fetches one or more Euronext detailed-quote (e.g. ETFs, stocks, bonds listed on Euronext) and extracts structured data from each response.

Input

ParameterTypeDefaultDescription
isinsstring[]sample valuesList of ISINs
marketCodesstring[]sample valuesList of market codes (validated via enum). Use one value to apply it to all isins, or provide one value per ISIN
useApifyProxybooleanfalseRoute requests through Apify Proxy
proxyGroupsstring[]Proxy groups (RESIDENTIAL, DATACENTER, GOOGLE_SERP)
maxConcurrencyinteger3Maximum parallel requests
requestTimeoutSecsinteger15HTTP request timeout in seconds

Example Input

{
"isins": [
"IE00B4L5Y983",
"IT0005565400"
],
"marketCodes": [
"ETFP",
"ETFP"
],
"useApifyProxy": false,
"maxConcurrency": 3,
"requestTimeoutSecs": 15
}

Output

Each dataset item contains the fields below:

FieldTypeDescription
instrumentNamestringFull instrument name
isinstringISIN code
micstringMarket code
pricenumberLast traded price
changePercentnumberDaily change in percent
currencystringTrading currency
timestampstringQuote timestamp
fetchedAtstringISO 8601 timestamp

Example Output

{
"instrumentName": "iShares Core MSCI World UCITS ETF",
"isin": "IE00B4L5Y983",
"mic": "ETFP",
"price": 98.45,
"changePercent": -0.32,
"currency": "EUR",
"timestamp": "10/06/2025 - 14:30 CET",
"fetchedAt": "2025-06-10T14:30:00.000Z"
}

How to find Euronext quote URLs

  1. Go to Euronext Live.
  2. Search for an instrument (ETF, stock, bond, etc.).
  3. Open the instrument page and read ISIN + market code from product key/quote URL.
  4. Add values to isins and marketCodes in the same order, or provide a single marketCodes value to apply to all ISINs.

Proxy

If Euronext starts blocking requests you can enable Apify Proxy:

{
"useApifyProxy": true,
"proxyGroups": ["RESIDENTIAL"]
}

Limitations

  • The actor relies on Euronext's internal endpoints which are undocumented and may change without notice.
  • Euronext may rate-limit or block requests; use proxy and reasonable concurrency settings.