Euronext Quotes by ISIN & Market
Pricing
from $0.50 / 1,000 results
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
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 months ago
Last modified
Categories
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
| Parameter | Type | Default | Description |
|---|---|---|---|
isins | string[] | sample values | List of ISINs |
marketCodes | string[] | sample values | List of market codes (validated via enum). Use one value to apply it to all isins, or provide one value per ISIN |
useApifyProxy | boolean | false | Route requests through Apify Proxy |
proxyGroups | string[] | – | Proxy groups (RESIDENTIAL, DATACENTER, GOOGLE_SERP) |
maxConcurrency | integer | 3 | Maximum parallel requests |
requestTimeoutSecs | integer | 15 | HTTP 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:
| Field | Type | Description |
|---|---|---|
instrumentName | string | Full instrument name |
isin | string | ISIN code |
mic | string | Market code |
price | number | Last traded price |
changePercent | number | Daily change in percent |
currency | string | Trading currency |
timestamp | string | Quote timestamp |
fetchedAt | string | ISO 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
- Go to Euronext Live.
- Search for an instrument (ETF, stock, bond, etc.).
- Open the instrument page and read
ISIN+ market code from product key/quote URL. - Add values to
isinsandmarketCodesin the same order, or provide a singlemarketCodesvalue 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.