cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
berta2b
Helper I
Helper I

Call a REST API multiple times using Power Query

 

I am loading a Data Model using Power Query via a RESTful API call returning JSON data so when you look at the code generated it's something like

 

let

 Source = Json.Document(Web.Contents("https:// MY API CALL").

in

 Source

 

This dataset will then be imported into Power BI.

 

However in order to get my complete dataset I need to call the API a number of times by changing values in the name/value pairs of the Querystring of the API's UR so the source should behave like this,

 

let

 Source = Json.Document(Web.Contents("https:// MY API CALL 1").

 Source = Json.Document(Web.Contents("https:// MY API CALL 2").

 Source = Json.Document(Web.Contents("https:// MY API CALL 3").

in

 Source

Has anybody been able to get this working please?

 

The vendor has explained it's not possible to import all the data in one API request so I'm having to call it multiple times!

 

Any help or advice would be much appreciated.

 

Thanks.

4 REPLIES 4

You can create a function from your query using this syntax:

let functionName = (param1 as datatype) =>

let

 Source = Json.Document(Web.Contents("https:// MY API CALL" & param1).

in

 Source

in functionName

 

You can then create a table with your parameters and then add a custom column to your table that calls/invokes your function

 

You can see an example here http://datachix.com/2014/05/22/power-query-functions-some-scenarios/ and here http://satalyst.com/power-query-creating-a-parameterized-function-in-m/

Hi @bidgeir @berta2b 

Thanks for this solution.

I got it working feeding off a REST API service. Then I wanted it to be scheduled on Power BI Service. But got this error:

Query contains unsupported function. Function name: Web.Contents

 

I have used 2 parameters:  (start as text, count as text) => 

Then I applied this against a list:  = List.Generate(()=>0, each _ < 67000, each _ + 1000) 

In a new query i start a custom function with Column1 = the List function and Column2 = 1000. After that I add the web-query which has the start and count params. 

The result should be it gets 1000 records at a time, otherwise it fails/time-out. 

 

Can you help me with the web-query refresh on PBI Service? (I am using basic auth with user and pass)

Thanks! 

Hi @jan_k123 

 

Not sure this help. I've faced the similar issue, and got worked using Gateway and Skip connection

 

I published the entier blog, you can read it

 

https://community.powerbi.com/t5/Community-Blog/Power-BI-Gateway-Monitoring-amp-Administrating-Part-...

 

https://community.powerbi.com/t5/Community-Blog/Power-BI-Gateway-Monitoring-amp-Administrating-Part-...

Hi 2 all and sorry for my English!


I have a question that has been torturing for 2 days already. I have a table MYTABLE with 2 columns (URL and Index)of the form:

 

URL                                                                                                    Index

jira.test.com/rest/api/2/issue/MYPROJECTKEYNAME-10/worklog    0

jira.test.com/rest/api/2/issue/MYPROJECTKEYNAME-11/worklog    1

..................................................                                                                   1999 

 

In this table I have 2000 records. My goal is to get the data stored in these URLs.

For this I use the following command:

#"MyNewTable"= Table.AddColumn(#"MYTABLE", "DataFromURLsColumn", each Json.Document(Web.Contents(#"MYTABLE"{[Index]}[URL])))

 

, but this request is very difficult and takes a very long time. So I must wait approximately 20-30 minutes or more.

My questions is next:

1. Is there a faster way to get this data stored in the URL?
2. Perhaps there are some global or other settings in the Power BI?
3. Does this command work so slowly due to the number of queries to jira rest api, or maybe because I'm adding a new calculated column to the table?
I will be very grateful for any help, thank you in advance!

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.