API
http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-api
CRUD API
http://scottdesapio.com/VBScriptOAuth/
http://www.timacheson.com/Blog/2013/jun/asptwitter
http://stackoverflow.com/questions/2883444/making-a-http-request-to-api-possible-with-vb-asp-classic
Dim req
Set req = Server.CreateObject("MSXML2.ServerXMLHTTP")
req.open "GET", "http://blabla.com", False
req.send()
Response.Write(req.responseText)