# Find Meetup Events by Date Range in Any City

**Use case:** 

Scrape upcoming Meetup events between two dates in a city. Export event names, start times, venues, RSVP counts and hosts as clean JSON from Meetup.com.

## Input

```json
{
  "outputType": "events",
  "searchQueries": [
    "technology"
  ],
  "locations": [
    "San Francisco, CA"
  ],
  "eventType": "any",
  "dateFrom": "2026-07-01",
  "dateTo": "2026-07-31",
  "minAttendees": 0,
  "radiusMiles": 0,
  "enrichEvents": true,
  "includeOrganizerLeads": true,
  "includeGroupEvents": false,
  "onlyNewItems": false,
  "monitorStateKey": "default",
  "maxResults": 200,
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "title": {
    "label": "Event"
  },
  "dateTime": {
    "label": "Starts"
  },
  "eventType": {
    "label": "Type"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "goingCount": {
    "label": "Going"
  },
  "isFree": {
    "label": "Free"
  },
  "feePrice": {
    "label": "Price"
  },
  "feeCurrency": {
    "label": "Cur"
  },
  "groupName": {
    "label": "Group"
  },
  "groupMembers": {
    "label": "Group members"
  },
  "venueName": {
    "label": "Venue"
  },
  "topics": {
    "label": "Topics"
  },
  "eventUrl": {
    "label": "URL"
  }
}
```

## About this Actor

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