Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
9 | |
8 | |
4 | |
2 | |
2 |
User | Count |
---|---|
4 | |
4 | |
3 | |
3 | |
2 |