46,260 questions
As the site does not have a published api, you are basically building a screen scraper. While there are screen scraping tools, to do a single page like this:
- reverse engineer the form post. Then you can use HttpClient to post data to the site
- reverse engineer the response. You will need to pick a html parsing library. With the library you parse the response html, and then extract the desire output.