I am a complete novice when it comes to coding and would really appreciate your help in a project.
I want to pull data in Excel from an API offered by a website (resource URL: http://api.opensignal.com/v2/networkrank.json).
Can you please advice how should I go about it. Or could you please help with a sample code.
Many thanks
First pick a langage. If you are a novice in programming, you can give Python a try. It is not that hard to get started. Just follow a good Getting Started Guide.
Then find the libraries you need to connect to your systems. For example:
Try basic things (simple GET on the API, simple write in the Excel document). Make it work. Iterate.
I made VBA-Web (Excel-REST) for accessing webservices and APIs with Excel. While I encourage you to look into tutorials on how to perform web requests with Excel (look for XMLHTTPRequest), I've found it to be a little tricky to get started, especially if you're new to programming, so here is some sample code based on OpenSignal's example: