ElasticSearch integrated with T-SQL - Using API

This is another way to access the ElasticSearch integrated with T-SQL:
 
Sample code
===================================================
 
Declare @Object as Int;
Declare @ResponseText as Varchar(8000);
 
Code Snippet
Exec sp_OACreate 'MSXML2.XMLHTTP', @Object OUT;
Exec sp_OAMethod @Object, 'open', NULL, 'get',
                 'https://localhost:9200/car/model?q=4wd', --Your Web Service Url (invoked)
                 'false'
Exec sp_OAMethod @Object, 'send'
Exec sp_OAMethod @Object, 'responseText', @ResponseText OUTPUT
 
Select @ResponseText
 
Exec sp_OADestroy @Object
 
Thanks for your contribution ;)