# Meetup Online Events Extractor

**Use case:** 

Extract online Meetup events for a topic with event dates, group names, attendee counts, and source URLs.

## Input

```json
{
  "searchQuery": "startup networking",
  "location": "San Francisco",
  "eventType": "online",
  "dateRange": "next-week",
  "maxResults": 20
}
```

## Output

```json
{
  "title": {
    "label": "Event",
    "format": "text"
  },
  "dateTime": {
    "label": "Date",
    "format": "text"
  },
  "groupName": {
    "label": "Group",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "rsvpCount": {
    "label": "RSVPs",
    "format": "number"
  },
  "eventType": {
    "label": "Type",
    "format": "text"
  },
  "isFree": {
    "label": "Free",
    "format": "boolean"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "eventUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Meetup Events Scraper](https://apify.com/automation-lab/meetup-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/meetup-scraper) to learn more, explore other use cases, and run it yourself.