Search code examples
c#.netrestasp.net-web-apifiddler

Finding Web.API URL from a website


I have a website which calls web API https://www.dreamtrips.com/

How can I find the web APIs used by this website to call different data?

Will fiddler give you the list of web API URLs called by this website?


Solution

  • You can use network tab in developer tools (F12) in browser to monitor all network calls. However, if the site does not have a public web API, the methods that are called will most likely be protected by CORS policy.