On Sat, Jun 30, 2018 at 4:44 AM Dan Jacobson <jidanni@jidanni.org> wrote:
There is no API call that will just return a list of page names
DebConf18/DayTrip/Registration/A
DebConf18/DayTrip/Registration/B
DebConf18/DayTrip/Registration/C

Indeed not, that's not what APIs are for. Use a tool like jq or xpath, or one of the many client libraries out there.

$ curl -s 'https://wiki.debconf.org/api.php?action=query&generator=allpages&gapprefix=DebConf18/DayTrip/Registration&gaplimit=3&format=json' | jq --raw-output '.query.pages[].title'

DebConf18/DayTrip/Registration/A
DebConf18/DayTrip/Registration/B
DebConf18/DayTrip/Registration/C