Get more than 200 events from the Meetup API v3 using OAuth 2

159 Views Asked by At

Fetching more than 200 entries of Events was possible in the meetup API v2 and earlier using the PAGE and OFFSET params. Using the meetup API v3 (the only way since 2019-08-15) you can only add the PAGE param, OFFSET doesn't work/is not available and PAGE returns 200 entries max. Does anyone have an idea how to fetch e.g. 600 entries from 5 years back?

This is the current doc for v3: https://secure.meetup.com/meetup_api/console/?path=/:urlname/events

1

There are 1 best solutions below

1
mlc On

You can look at the returned Link headers for one with a rel="next" attribute, as (briefly) documented here.