[05:48:12] Right now, I am using 3 APIs to fetch the following details - List of all the “Online food ordering” companies and their logos. Is it possible to do this task using single API hit?I have taken an example of “Swiggy” online food ordering company in these APIs.1. [05:48:13] https://en.wikipedia.org/wiki/Special:ApiSandbox#action=query&format=json&prop=images&list=categorymembers&imlimit=100&cmtitle=Category%3AOnline%20food%20ordering&cmprop=ids%7Ctitle&cmlimit=1002. https://en.wikipedia.org/wiki/Special:ApiSandbox#action=query&format=json&prop=images%7Cimageinfo%7Cinfo&titles=Swiggy&formatversion=23. [05:48:13] https://en.wikipedia.org/w/api.php?action=query&format=json&titles=File:Swiggy%20logo.svg&prop=imageinfo&iilimit=50&iiend=2007-12-31T23:59:59Z&iiprop=timestamp|user|url [06:05:39] Bhuwan: look at the API docs for generators [06:05:54] you'll probably need 2 requests though [06:06:17] although depending on exactly what data you need you might be able to use the pageimage API [10:18:28] Hello. I am attempting to get all pages in a specific namespace using the semantic api's ask action. The problem is, only a small number of results are returned. [10:18:45] And not all the results. [10:18:50] Any ideas? [10:21:31] This is my query: /api.php?action=ask&query=[[MY_NAMESPACE:+]]&format=json (according to https://www.semantic-mediawiki.org/wiki/Help:Search_namespace_restrictions) [10:54:47] ckarageorgkaneen: The api probably provides pagination and you should call it again with the pagination information (usually a "continue" parameter or similar) to fetch more results [10:57:23] An action such as api.php?action=query&format=json&list=allpages does, but the one I am trying does not.