{
  "openapi": "3.0.1",
  "info": {
    "title": "Meetup Scraper — Events, Groups & Organizer Leads",
    "description": "Scrape Meetup events, groups and organizer leads by keyword, city or URL. Rich event data: date, venue geo, RSVP counts, price, hosts and topics, plus group member counts and organizers as B2B leads. Monitor mode pulls only new items. No login. Export JSON, CSV, Excel.",
    "version": "1.0",
    "x-build-id": "H0mHcl6YlZvVPtXP6"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapesage~meetup-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapesage-meetup-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/scrapesage~meetup-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapesage-meetup-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/scrapesage~meetup-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapesage-meetup-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "outputType": {
            "title": "What to output",
            "enum": [
              "events",
              "groups",
              "organizers",
              "all"
            ],
            "type": "string",
            "description": "Choose the record type that lands in your dataset. `Events` (default) and `All` run an event search; `Groups` and `Organizer leads` run a group search. A single type gives one clean, fully-populated table; `All` returns events + their groups + organizer leads together, each row tagged with a `type` field.",
            "default": "events"
          },
          "searchQueries": {
            "title": "Search keywords",
            "type": "array",
            "description": "Keywords to search Meetup for, e.g. `ai`, `startup networking`, `real estate investing`. Each keyword is combined with every location below. Leave empty to browse a location with no keyword filter.",
            "items": {
              "type": "string"
            }
          },
          "locations": {
            "title": "Locations",
            "type": "array",
            "description": "Cities or places to search, e.g. `New York, NY`, `Austin, TX`, `San Francisco`, `London`. Free text is resolved to coordinates automatically. Use `online` to search online-only events. Each location is combined with every keyword above.",
            "items": {
              "type": "string"
            }
          },
          "eventType": {
            "title": "Event type",
            "enum": [
              "any",
              "physical",
              "online"
            ],
            "type": "string",
            "description": "Limit to in-person or online events (applies to event searches).",
            "default": "any"
          },
          "dateFrom": {
            "title": "Start date (from)",
            "type": "string",
            "description": "Only events starting on/after this date. Defaults to now (upcoming events only). Format: YYYY-MM-DD."
          },
          "dateTo": {
            "title": "Start date (to)",
            "type": "string",
            "description": "Only events starting on/before this date. Format: YYYY-MM-DD."
          },
          "minAttendees": {
            "title": "Minimum attendees (RSVPs)",
            "minimum": 0,
            "type": "integer",
            "description": "Only return events with at least this many people going. 0 = no minimum. Handy to filter out tiny events when prospecting.",
            "default": 0
          },
          "radiusMiles": {
            "title": "Search radius (miles)",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "Distance around the location to search. 0 = Meetup's default radius.",
            "default": 0
          },
          "groupUrls": {
            "title": "Group URLs",
            "type": "array",
            "description": "Scrape specific Meetup groups directly. Accepts full URLs (`https://www.meetup.com/awsnewyork/`) or bare urlnames (`awsnewyork`). Returns the group profile, member count and organizer lead.",
            "items": {
              "type": "string"
            }
          },
          "eventUrls": {
            "title": "Event URLs",
            "type": "array",
            "description": "Scrape specific events directly. Accepts full event URLs (`https://www.meetup.com/awsnewyork/events/314916614/`) or bare event IDs.",
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Mixed Meetup URLs",
            "type": "array",
            "description": "A mixed list of Meetup group or event URLs — each is auto-detected and routed to the right scraper.",
            "items": {
              "type": "string"
            }
          },
          "enrichEvents": {
            "title": "Enrich events (hosts, topics, full detail)",
            "type": "boolean",
            "description": "Open each event for its full detail — hosts (B2B leads), topics, exact going/waitlist counts, full description, precise venue geo, ticket price and speaker. Adds one fast API call per event. Turn off for a faster, lighter run that still includes title, group, venue, going count and price.",
            "default": true
          },
          "includeOrganizerLeads": {
            "title": "Output organizer leads",
            "type": "boolean",
            "description": "When scraping groups (Groups / Organizer leads / All), also emit one organizer-lead record per group: name, profile, bio, location, how many groups they run and a lead score.",
            "default": true
          },
          "includeGroupEvents": {
            "title": "Also scrape each group's upcoming events",
            "type": "boolean",
            "description": "When scraping groups or group URLs, also pull each group's upcoming events into the dataset.",
            "default": false
          },
          "onlyNewItems": {
            "title": "Monitor mode — only new items",
            "type": "boolean",
            "description": "Output only items that were NOT returned in previous runs. Remembers what it has delivered in a persistent store, so on a schedule each run gives you just the new events/groups. Works alongside Apify Schedules — it does not replace or interfere with the scheduler.",
            "default": false
          },
          "monitorStateKey": {
            "title": "Monitor state key",
            "type": "string",
            "description": "Advanced: name the monitor memory so different searches track their own 'already seen' list. Use a different key per search/schedule to keep them independent.",
            "default": "default"
          },
          "maxResults": {
            "title": "Max results",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of records to output across the whole run (0 = no limit). Keeps test runs cheap and predictable.",
            "default": 200
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Maximum number of parallel API calls.",
            "default": 6
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Proxy settings. Meetup's public API is light on anti-bot, so Apify Proxy (datacenter, the default) works well. Switch to residential for very large runs.",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}