Forum Discussion
MFester
6 years agoFrequent Visitor
Get data using Rest API (post)
Hello I have this url https://api.statbank.dk/v1/data and I want to use this request for getting data for PowerBI. { "table": "ls01", "format": "CSV", "valuePresentation": "Value", "tim...
Jayendran
6 years agoSolution Sage
Hi MFester ,
Basically you can use Web.Contents to call the API like below
let
Source = Json.Document(Web.Contents("https://api.statbank.dk/v1/data"))
in
Source
Please refer the below link
https://community.powerbi.com/t5/Developer/Connecting-to-web-api/td-p/775075