# Meetup Events Search Scraper

**Use case:** 

Search Meetup events by keyword and location and extract dates, venues, groups, RSVP counts, and event URLs.

## Input

```json
{
  "searchQuery": "python programming",
  "location": "New York",
  "eventType": "",
  "dateRange": "this-week",
  "maxResults": 25
}
```

## 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.