I have found that it is easy to find the API when a website uses client-side rendering. Unfortunately, the website I am looking at uses server-side rendering and I am trying to find the API. Articles that talk about how to find the API always only explain how to do it for client-side rendered websites and then dismiss server-side, "because it is a lot more complicated". My question is if it is even possible to find the API from a server-side rendered website and if anybody would have any starting point for me since I am unable to find anything.
CodePudding user response:
You can't.
You don't have access to the server-side code so you have no way of telling where it is getting the data from.
Maybe it is a public web service. Maybe it is a private web service. Maybe it is direct access to a database. Maybe it is reading data from static files on the server's local file system. You have no way of telling.
