# Scrape upcoming vibe-coding events in San Francisco

**Use case:** Track trends

Extract event details from Meetup.com based on keywords and city. Get essential data like names, dates, and more. Try it now.

## Input

```json
{
  "searchKeyword": "Vibe coding",
  "city": "San Francisco",
  "state": "PHYSICAL",
  "country": "us",
  "maxResults": 100
}
```

## Output

```json
{
  "eventId": {
    "label": "Event ID",
    "format": "text"
  },
  "eventName": {
    "label": "Event Name",
    "format": "text"
  },
  "eventDescription": {
    "label": "Description",
    "format": "text"
  },
  "eventType": {
    "label": "Event Type",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "eventUrl": {
    "label": "Event URL",
    "format": "link"
  },
  "organizedByGroup": {
    "label": "Organized By",
    "format": "text"
  },
  "groupUrlname": {
    "label": "Group URL Name",
    "format": "text"
  },
  "maxAttendees": {
    "label": "Max Attendees",
    "format": "number"
  },
  "actualAttendees": {
    "label": "Actual Attendees",
    "format": "number"
  },
  "isPaidEvent": {
    "label": "Paid Event",
    "format": "boolean"
  },
  "feeAmount": {
    "label": "Fee Amount",
    "format": "number"
  },
  "feeCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "feeRequired": {
    "label": "Fee Required",
    "format": "boolean"
  }
}
```

## About this Actor

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