[Fetch API] Access another link in the fetched data

Hello, I’m currently working on fetching Wikipedia API and so far it’s been successfully fetched. BUT I have no idea how I can access the link in the data below(that I marked with an arrow) and see the data.

Can you guys advise me on how I could do that?
Thank you in advance.

btn.addEventListener("click", () => {
  console.log("clicked");
  const searchValue = input.value;
  const url = `https://en.wikipedia.org/w/api.php?action=opensearch&format=json&search=${searchValue}`;
  console.log(url);
  fetch(url)
    .then((resp) => {
      console.log(resp);
      return resp.json();
    })
    .then((data) => {
      console.log(data);
    });
});

Hello!

Are you trying to retrieve the data in JSON format? I don’t know the wikipedia API, but I found this on SO → How to get Wikipedia content using Wikipedia's API? - Stack Overflow. Basically, you have to use the end point query with parameters to retrieve the parts of the content you want. Specifically, you need to use the prop=revisions: http://en.wikipedia.org/w/api.php?action=query&prop=revisions&rvprop=content&rvsection=0&titles=pizza

If you require the HTML, you could make another request and fetch it instead, parsing it with something like cheerio js and extract the sections you want.

Hello Nicolas! Thank you for your kind reply with nice advice!
That’s right !! I was trying to retrieve the data in JSON format !!

I think I should look into the links you introduced first!