I want to know: is there any API or a query interface through which I can access Wikipedia data?
You can use Jwiki to get Wikipedia data (Disclosure: I'm the author of this software) Example :
Jwiki jwiki = new Jwiki("elon musk");
System.out.println("Title :"+jwiki.getDisplayTitle()); //get title
System.out.println("Text : "+jwiki.getExtractText()); //get summary text
System.out.println("Image : "+jwiki.getImageURL()); //get image URL