luma-event-attendeeslisted
Install: claude install-skill gooseworks-ai/goose-skills
# luma-event-attendees
Find and extract speakers, hosts, and registered guest profiles from Luma events for outreach prospecting.
## Two Modes
### 1. Direct Scrape (free)
Scrapes Luma event pages directly. Gets event metadata + hosts. Guest profiles only if publicly embedded in the page.
```bash
python3 scripts/scrape_event.py https://lu.ma/abc123
```
### 2. Apify Search (paid, recommended for guest lists)
Uses the `lexis-solutions/lu-ma-scraper` Apify actor to search Luma and return full event data including **featured guest profiles** (name, bio, LinkedIn, Twitter, Instagram, website).
```bash
python3 scripts/scrape_event.py --search "AI San Francisco"
```
**Cost:** $29/month flat subscription on Apify.
**Rent:** https://console.apify.com/actors/r5gMxLV2rOF3J1fxu
## Setup
### 1. Apify API Token (required for --search mode)
1. Create account: https://apify.com/
2. Get API token: https://console.apify.com/account/integrations
3. Rent the Luma scraper: https://console.apify.com/actors/r5gMxLV2rOF3J1fxu ($29/mo, 24h free trial)
4. Set token:
```bash
export APIFY_API_TOKEN="apify_api_YOUR_TOKEN_HERE"
# Or create .env file in skill directory
```
### 2. Install Dependencies
```bash
pip3 install requests
```
## Usage
### Direct Scrape (free, hosts only)
```bash
# Single event
python3 scripts/scrape_event.py https://lu.ma/pwciozw0
# Multiple events
python3 scripts/scrape_event.py https://lu.ma/abc https://lu.ma/def
# Export to CSV
python3 scripts/scrape_event.py