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

Join 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.

Reply
nf_protogramma
Regular Visitor

Custom API keeps asking for authentication

I have an API using the following M query to implement an authentication using headers, api key & token.

let
// Define the API URL for data retrieval
apiUrl = "https://app.test.com/MyList",

// Define headers with x-api-key and x-token
headers = [
#"x-api-key" = "your_api_key_value",
#"x-token" = "your_token"
],

// Make the GET request with headers
response = Web.Contents(apiUrl, [Headers=headers]),
jsonResponse = Json.Document(response)
in
jsonResponse

And I want to authenticate anonimously because I user headers and I can not. It keeps asking for authentication. My API also connects with a username and password or with API key. But none of them seem to work. It always keep asking for authentication.

Any clue on the issue or hint for the approach?
Thank you.

Nick

1 REPLY 1
Anonymous
Not applicable

Hi @nf_protogramma ,

Base on your description, it sounds like you're trying to make a web request in Power Query (M language) and encountering issues with the authentication prompt. Please try to set Anonymous authentication and check if it can resolve the problem:

  • Go to 'File' > 'Options and settings' > 'Data Source Settings'
  • Find the data source (your API URL) and select it
  • Click on 'Clear Permissions'
  • Try to reconnect and, when prompted, choose 'Anonymous' accessvyiruanmsft_0-1719217559256.png

Best Regards

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.