Your question has nothing to do with jQuery. You will have better luck asking in some forum for users of Wikipedia API.
It will help to understand the structure of the data to run it through a JSON pretty-printer. You can try this one:
But there are many others.
A quick look shows me that the content is delivered as a single string of WikiText. You will need to understand WikiText. That is, there is a string of WikiText inside the JSON. For this particular result, if the response were in an object called data, the Wikitext can be found at:
data.pages['69058']['*']
If you don't know the page ID in advance, you could use $.each to step through the pages. (Of which there is only one!)
$.each(data.pages, function() {
var page = this['*'];
// Now do something with the Wikitext in the page variable
}
Perhaps there are alternative ways to get the text. Perhaps you need to learn how to parse Wikitext. Study the API further, or find a place that discusses the Wikipedia API for help.