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

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

Reply
smpa01
Community Champion
Community Champion

fetch external link

@dm-p I could not fetch while developing this , I had to locally bundle the json, I was wondeing is there a workaround to fetch external link ?

const TOPO_URL = 'https://cdn.jsdelivr.net/npm/world-atlas@2/countries-110m.json';
const world = await fetch(TOPO_URL).then(r => r.json());

 

Thank you in advance.


========================
Did I answer your question? Mark my post as a solution!
Proud to be a Super User
My Custom Visualization Projects
• Plotting Live Sound: Live Sound
• Beautiful News: Women in Parliament, Energy Mix, Shrinking Armies
• Visual Capitalist: Working Hrs
• Others: Easing Graph, Animated Calendar
MayViz Submissions
• Week 1: View
• Week 2: View
• Week 3: View
• Week 4: View
========================
2 REPLIES 2
davidwarner344
New Member

Bundling the JSON locally is usually the safest solution. Power BI visuals often restrict external URL fetches, so unless the endpoint is explicitly allowed, direct requests may not work.

dm-p
Super User
Super User

Hi @smpa01,

 

Did you enable the web access privilege? This is the first thing I'd check.

 

This doesn't necessarily mean a fetch will work, though. A custom visual is still a sandboxed iframe with null origin, even if this is enabled. However, you should get a meaningful error in the browser console if you do attempt it. If cdn.jsdelivr.net does not allow cross-origin requests, you won't be able to serve from there and may need to find a suitable server that does.

 

Regards,

 

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

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.

Top Solution Authors