Import Achmea IM quotes

I’m trying to scrape quotes from my pension investment manager’s website Achmea IM (NL). Some of the funds use unlisted ISIN codes, so not available via a common quote provider.

Quote page

That page visually shows a table, but the network trace shows that table is constructed via a JavaScript object ‘site.js’.

What can i do in Portfolio Performance to get e.g. the quote (Koers) for fund Fondscode=DRF

Here is an example for “Achmea IM 30 Year Overlay Fund” (Fondscode=OF30)

Provider: JSON

URL: https://www.achmeainvestmentmanagement.nl/Rates/GetAllRates?code=OF30
Path to date: $.funds[0].rates[*].x
Path to quote: $.funds[0].rates[*].y

Try to change the code at the end of the URL from OF30 to DRF, it should work.

Thanks @ProgFriese, that works!

You’re quite clever. I was stuck at getting quotes from that table, and did not think of that if the table is browser generated then perhaps the graphics are browser generated too. Also, the graphics show percentages, not Euro values, so in my thinking not a usable source.
Thanks for unraveling the details and translating to a PP JSON quote feed.