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

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.

Reply
SisterRay
Frequent Visitor

Get API response headers

Hi all,

I try to get list of headers, but there are only 5 of them in response. I need to get all. For example, "Link" should be used to retrieve the next page of results.

Anyone would have a tip to get all headers?

 

Power Query:

let
// Define the headers
headers = [
#"Content-Type" = "application/json",
#"X-Shopify-Access-Token" = "{password}"
],

// Original API request code generated by Power Query
source = Web.Contents("https://{shop}.myshopify.com/admin/api/2023-04/products.json?limit=250", [Headers=headers]),

// Retrieve response headers
responseHeaders = Value.Metadata(source),

// Retrieve response headers
Headers = responseHeaders[Headers]
in
Headers

Postman:

SisterRay_0-1688229039289.png

Power Query:

SisterRay_1-1688229136120.png

 

Many thanks in advance!




3 REPLIES 3
jprdynamicapps
Helper IV
Helper IV

The only way to get all headers (as opposed to a subset) is to use a custom connector.

Upvote suggestion to get all headers back here: https://ideas.fabric.microsoft.com/ideas/idea/?ideaid=e47d7520-1509-ed11-b5cf-281878de6c19

 

PhilipTreacy
Super User
Super User

@SisterRay 

 

What's in the rest of the API response?  If you need Link to control paging then the API will return that somewhere.

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


I've noticed that the link is only in Response header.

SisterRay_1-1688286581736.png

I want to make sure that I can't get all headers in Power Query.

 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors