Meetup API scraper
Meetup API scraper
/meetup/v1/search1 creditDiscover upcoming events near a city. Filter by event type (in-person or online) and by date window, paginated. Returns each event's name, date, venue with coordinates, RSVP count, fee, image and the hosting group. (Meetup's logged-out discovery feed is location-based — pass a city; for a specific topic, browse a relevant group's events.)
| Parameter | Allowed / range | Description | |
|---|---|---|---|
| location | optional | — | City to find events near — a plain place name ('Chicago', 'London', 'Austin, TX', 'Berlin'). We geocode it for you (US and international). Defaults to New York, NY. |
| event_type | optional | PHYSICAL · ONLINE | Restrict to in-person (PHYSICAL) or ONLINE events. Omit for both. |
| date | optional | today · tomorrow · this-week · this-weekend · this-month | Optional date window for upcoming events. |
| radius = 25 | optional | 1–100 | Search radius in miles around the city (1-100, default 25). |
| cursor | optional | — | Pagination cursor. Pass meta.next_cursor from the previous response to fetch the next page. Page until meta.has_more is false. |
/meetup/v1/event1 creditFull 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.
| Parameter | Allowed / range | Description | |
|---|---|---|---|
| event_id | optional | — | Meetup 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). |
| url | optional | — | Full Meetup event URL (preferred — carries the group path). |
/meetup/v1/group1 creditFull 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.
| Parameter | Allowed / range | Description | |
|---|---|---|---|
| group | optional | — | Meetup group urlname (the slug in meetup.com/<urlname>/). From a search result's group.urlname. |
| url | optional | — | Alternatively a full Meetup group URL. |
/meetup/v1/group_events1 creditA group's events by urlname or url. Choose upcoming (default) or past. Returns each event with name, datetime, venue, fee, RSVP count and link.
| Parameter | Allowed / range | Description | |
|---|---|---|---|
| group | optional | — | Meetup group urlname to list events for. |
| url | optional | — | Alternatively a full Meetup group URL. |
| type = upcoming | optional | upcoming · past | 'upcoming' (default) or 'past' events. |
curl -X POST https://api.reefapi.com/meetup/v1/search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"location":"New York"}'{
"ok": true,
"data": { /* the result */ },
"meta": {
"latency_ms": 240,
"record_count": 12,
"completeness_pct": 100
},
"error": null
}