Web scraping in Python: data populated via javascript (I think)

I am trying to scrape the race result data from this link. However, the data is not in the HTML code if I just scrape that. The body seems to be generated with a javascript file:

<body id='rtrt' >
<div id='rt-app'></div><script type='text/javascript' src='https://track.rtrt.me/js/embed.js?appid=5f59147ca5f987352f8b4582&event=TLMR-CAMBRIDGE-HALF-2024&responsive=1'></script>
</body>

I looked at the script that it links too and it’s pretty confusing. My question is if it is even possible for me to scrape the result data, and if so how I should go about trying to do it.