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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
ooptennoort
Advocate I
Advocate I

Connecting Power Query to Relatics

Has anyone of you ever used Power Query to get data out of Relatics (without using an export file)? If so, how?!

1 REPLY 1
freginier
Solution Sage
Solution Sage

Hi ooptennoort,

Yes, it is possible to connect Power Query directly to Relatics without using an export file. Relatics exposes a REST API (OData and/or SOAP), which you can query from Power Query / Power BI.

Here are the main approaches:

  1. OData Feed (recommended): If your Relatics environment supports OData, you can use the built-in OData Feed connector in Power Query. Go to Get Data → OData Feed and enter your Relatics OData endpoint URL. You may need to authenticate using Basic or OAuth credentials provided by your Relatics administrator.
  2. Web / REST API: Relatics also has a REST API. You can use the Web connector in Power Query with the appropriate endpoint URL and authentication headers. Use Web.Contents() in M with headers for your API key or token.
  3. Custom Connector: For more advanced integration, you can build a custom Power Query connector (.pqx) using the Relatics API documentation.

A typical M query using the Web connector would look like this:

let Source = Web.Contents("https://your-tenant.relatics.com/api/...", [Headers=[Authorization="Bearer your_token"]]), result = Json.Document(Source) in result

I recommend checking the Relatics documentation for the specific API endpoint structure and authentication method your organization uses.

Hope this helps!

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.