Skip to content

Instantly share code, notes, and snippets.

@joe-warren
Created November 21, 2025 15:14
Show Gist options
  • Select an option

  • Save joe-warren/59eab7199210ea638ea7b40aab7b7fa7 to your computer and use it in GitHub Desktop.

Select an option

Save joe-warren/59eab7199210ea638ea7b40aab7b7fa7 to your computer and use it in GitHub Desktop.
Meetup Attendee Name Scraper
#!/usr/bin/env sh
EVENT_ID=$1
jq ".variables.eventId = \"$EVENT_ID\""< request-template.json \
| curl \
-H "Content-Type: application/json" \
-X POST --data-binary @- \
https://www.meetup.com/gql2 \
| jq '.data.event.title, .data.event.rsvps.edges.[].node.member.name'
{
"operationName": "getEventByIdForAttendees",
"variables": {
"eventId": "",
"filter": {
"rsvpStatus": [
"YES",
"ATTENDED"
]
},
"sort": {
"sortField": "RSVP_ID",
"sortOrder": "ASC"
},
"first": 100
},
"extensions": {
"persistedQuery": {
"version": 1,
"sha256Hash": "06e14c0b9938b3f0cbd5f0ef3a4cf910d01285c8bcc6ebf76b0f0aafbf19b076"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment