How to fetch a JSON Value from external website

Hey again,
woohoo :heart_eyes: fetching from external Website is working now for me.
What I did…

  1. created a Text(A) column called “githublink” an pasted the url show code
  2. created a JavaScript column called “JS fetch from github”
const response = await fetch(p1);
const data = await response.json();
const jsonData = JSON.stringify(data);
return jsonData;
  • p1 is pointing to (A) githublink
  1. created a regular Template column called “template for JSON Query”
    image
  2. finaly the last Step Query the JSON
    image

Now hopefuly the last question…
what is faster and uses less resources, Jeffs or Erics method?

Thank’s
Alex

2 Likes