Created
November 21, 2025 15:14
-
-
Save joe-warren/59eab7199210ea638ea7b40aab7b7fa7 to your computer and use it in GitHub Desktop.
Meetup Attendee Name Scraper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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