docs / meetup

Meetup API scraper

Meetup API scraper

base /meetup/v14 endpoints
post/meetup/v1/event1 credit

Full detail for one event by id or url: name, description, start/end datetime, venue with full address and coordinates, hosting group, fee, RSVP/going count, topics, event type and status.

ParameterAllowed / rangeDescription
event_idoptionalMeetup event id (the number in /<group>/events/<id>/). From a search result's event_id. Requires `url` too if the group urlname is unknown (the id alone needs its group path).
urloptionalFull Meetup event URL (preferred — carries the group path).
Try in playground →
post/meetup/v1/group1 credit

Full profile for a Meetup group by urlname or url: name, member count, average event rating, topics, city/coordinates, description, join mode, founded date and social links.

ParameterAllowed / rangeDescription
groupoptionalMeetup group urlname (the slug in meetup.com/<urlname>/). From a search result's group.urlname.
urloptionalAlternatively a full Meetup group URL.
Try in playground →
post/meetup/v1/group_events1 credit

A group's events by urlname or url. Choose upcoming (default) or past. Returns each event with name, datetime, venue, fee, RSVP count and link.

ParameterAllowed / rangeDescription
groupoptionalMeetup group urlname to list events for.
urloptionalAlternatively a full Meetup group URL.
type = upcomingoptionalupcoming · past'upcoming' (default) or 'past' events.
Try in playground →