I'm trying to learn about web APIs and was wondering if you could help me with a simple one to retrieve information about an online image. An example URL could be
https://www.google.co.uk/imgres?imgurl=https%3A%2F%2Fvignette.wikia.nocookie.net%2Fjurassicpark%2Fimages%2F7%2F74%2FApatosaurus.png%2Frevision%2Flatest%3Fcb%3D20150103191434&imgrefurl=http%3A%2F%2Fjurassicpark.wikia.com%2Fwiki%2FApatosaurus&docid=inqHuw-Ju5m40M&tbnid=rDDyWwT3vIXnGM%3A&vet=10ahUKEwiD34KBu5LeAhUkJMAKHb9gADEQMwhqKAIwAg..i&w=1288&h=540&bih=969&biw=1920&q=apatosaurus&ved=0ahUKEwiD34KBu5LeAhUkJMAKHb9gADEQMwhqKAIwAg&iact=mrc&uact=8
How could I build a RESTful API which accepts the image url as a parameter and retrieve information about the image must be retrieved responding in JSON format. Is it also possible to create a web client to call the API. It only needs a single page to accept input for the url, a button to call the API, and an area to display the response.
I'm using C# within Visual Studio 2017 community edition.