<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to pull data from fabric data stores without authentication? in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-to-pull-data-from-fabric-data-stores-without-authentication/m-p/5235073#M16880</link>
    <description>&lt;P class=""&gt;&lt;SPAN&gt;Is there any supported way to expose or consume Fabric GraphQL data externally without requiring Microsoft Entra ID authentication?&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;For example, can the GraphQL endpoint be accessed through any alternative mechanism such as a public endpoint, API key, embedded access model, service account, or any other supported integration pattern?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Our requirement is to allow an external system to retrieve data without implementing Entra ID-based authentication.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 25 Jun 2026 06:30:30 GMT</pubDate>
    <dc:creator>YashMoroliya</dc:creator>
    <dc:date>2026-06-25T06:30:30Z</dc:date>
    <item>
      <title>How to pull data from fabric data stores without authentication?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-to-pull-data-from-fabric-data-stores-without-authentication/m-p/5235073#M16880</link>
      <description>&lt;P class=""&gt;&lt;SPAN&gt;Is there any supported way to expose or consume Fabric GraphQL data externally without requiring Microsoft Entra ID authentication?&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;For example, can the GraphQL endpoint be accessed through any alternative mechanism such as a public endpoint, API key, embedded access model, service account, or any other supported integration pattern?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Our requirement is to allow an external system to retrieve data without implementing Entra ID-based authentication.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 06:30:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-to-pull-data-from-fabric-data-stores-without-authentication/m-p/5235073#M16880</guid>
      <dc:creator>YashMoroliya</dc:creator>
      <dc:date>2026-06-25T06:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull data from fabric data stores without authentication?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-to-pull-data-from-fabric-data-stores-without-authentication/m-p/5235116#M16882</link>
      <description>&lt;DIV class=""&gt;&lt;SPAN&gt;Short answer: no, not directly.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;Fabric GraphQL endpoints are not public/no-auth endpoints. Microsoft’s documentation states that applications connecting to Fabric API for GraphQL must use Microsoft Entra ID authentication, and the caller then needs the required permissions on the GraphQL API and underlying data source.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;So the endpoint cannot be consumed with just the URL, a Fabric workspace permission, or a simple unauthenticated request.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;If the external system cannot implement Entra authentication directly, the supported pattern would be to put something in front of Fabric, for example Azure API Management or an Azure Function / custom API.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;Example pattern:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;External system&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;→ calls your API / APIM endpoint, possibly with API key or another auth method&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;→ your API / APIM authenticates to Fabric using Entra ID / managed identity / service principal&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;→ Fabric GraphQL is called securely&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;Microsoft also documents APIM integration with Fabric API for GraphQL, including managed identity authentication.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;So you can hide the Entra flow from the external system by using a proxy/gateway, but the backend call to Fabric still needs Entra authentication.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;I would not treat service accounts, public endpoints, or API keys as a supported direct replacement for Entra authentication against the Fabric GraphQL endpoint.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;References:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/connect-apps-api-graphql" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/data-engineering/connect-apps-api-graphql&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/api-graphql-azure-api-management" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/data-engineering/api-graphql-azure-api-management&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;Best regards&lt;/DIV&gt;&lt;DIV class=""&gt;Solutions Architect - Microsoft Fabric Specialist - Parchitect&lt;BR /&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt;Did my response help you? Clicking Kudos is a small gesture that goes a long way, it encourages contributors and helps the community thrive!&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":heavy_check_mark:"&gt;✔️&lt;/span&gt;Did I answer your question? Please mark my post as a Solution, it helps others find the answer faster.&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 25 Jun 2026 06:42:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-to-pull-data-from-fabric-data-stores-without-authentication/m-p/5235116#M16882</guid>
      <dc:creator>Parchitect</dc:creator>
      <dc:date>2026-06-25T06:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull data from fabric data stores without authentication?</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/How-to-pull-data-from-fabric-data-stores-without-authentication/m-p/5236394#M16894</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1633533"&gt;@YashMoroliya&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;No, it is not possible.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tayloramy_0-1782395482210.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1353547iA3D07DC703781689/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tayloramy_0-1782395482210.png" alt="tayloramy_0-1782395482210.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-engineering/get-started-api-graphql" target="_blank"&gt;Create and add data to an API for GraphQL - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Entra ID is mandatory for the Fabric GraphQL APIs.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 13:51:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/How-to-pull-data-from-fabric-data-stores-without-authentication/m-p/5236394#M16894</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-06-25T13:51:42Z</dc:date>
    </item>
  </channel>
</rss>

