Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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",
"timeOrder": "Ascending",
"delimiter": "Semicolon",
"variables": [
{
"code": "BRANCHE",
"values": [
"*"
]
},
{
"code": "ENHED",
"values": [
"*"
]
},
{
"code": "Tid",
"values": [
"2010",
"2018"
]
}
]
}
I have never used API's for getting data into PowerBI, hence a step-by-step guide would be very much appreciated!
Thank you 🙂
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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 4 | |
| 4 | |
| 4 | |
| 3 | |
| 3 |