Use New HTTP Request with Get method on the URL
request = New HTTP Request(
	URL("https://www.jmp.com/en_fi/home.html"),
	Method("Get")
);
data = request << send;
You might also have REST API endpoint you could use. If these aren't enough might have to use something like SeleniumBrowser Scripting with Python Selenium 
					
				
			
			
				
	-Jarmo