Using Azure Data Factory to get data from a REST API

dagrun picture dagrun · Feb 22, 2016 · Viewed 21.7k times · Source

Is it possible to use Azure Data Factory to get data from a REST API and insert it to a Azure database table?

Answer

Alex KeySmith picture Alex KeySmith · Jul 28, 2017

Data factory offers a generic HTTP connector and a specific REST connector, allowing you to do retrieve data from HTTP endpoints by using GET or POST methods.

Example: HTTP Linked Service

{
    "name": "HttpLinkedService",
    "properties":
    {
        "type": "Http",
        "typeProperties":
        {
            "authenticationType": "Anonymous",
            "url" : "https://en.wikipedia.org/wiki/"
        }
    }
}