Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
ChristyQV
Frequent Visitor

API request where each record is counted as a request

I have been using an API to pull data into Power Query and then PowerBI from a task management tool.  The API documentation states that they limit requests to 100 request per minute per token.  I have the following M that requests a list of the tasks; it only returns 100 records. Is there something in the way I wrote this that is making multiple requests?  It only looks like one request to me, not one request per record.  Is there a better way for me to do this?

 

let
    token = "XX_YV5JX1DMD5D3CDEVTGO58UT44YXXXXXX",
    endpoint = "2232929/task?include_closed=True",
    baseUrl = "https://api.clickup.com/api/v2/team/",
    url = Text.Combine({baseUrl,endpoint}),
    
    request = Web.Contents(
        url,
        [
            Headers = [
                Authorization = token
            ],
            Query = [
                    ]
        ]
    ),
    requestData = Json.Document(request),
    
    #"Converted to Table" = Record.ToTable(requestData),
    #"Expanded Value" = Table.ExpandListColumn(#"Converted to Table", "Value")
    
in
    #"Expanded Value"

Judging from discussions on the vendors site, it does not seem that the API limit is really 100 records so I assume it's something I'm doing wrong. Thanks for any insight.

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @ChristyQV 

It loads 100 rows by default.

Please read this thread to find some workarounds.

https://community.airtable.com/t/json-string-only-contains-100-rows-when-connected-to-power-bi-deskt...

 

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @ChristyQV 

It loads 100 rows by default.

Please read this thread to find some workarounds.

https://community.airtable.com/t/json-string-only-contains-100-rows-when-connected-to-power-bi-deskt...

 

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.