{
  "openapi": "3.0.1",
  "info": {
    "title": "Meetup Events Scraper",
    "description": "Scrape public Meetup.com events by keyword + location, group URL, or event URL. RSVP counts, venue, price, organizer group. HTTP-only, no login, MCP-ready.",
    "version": "0.3",
    "x-build-id": "d0jF17nFrMryZ53DY"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/khadinakbar~meetup-events-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-khadinakbar-meetup-events-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/khadinakbar~meetup-events-scraper/runs": {
      "post": {
        "operationId": "runs-sync-khadinakbar-meetup-events-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/khadinakbar~meetup-events-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-khadinakbar-meetup-events-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": {
          "searchQueries": {
            "title": "Search keywords",
            "type": "array",
            "description": "Keyword searches run on Meetup events, one entry per term (e.g. 'technology', 'yoga', 'startup networking'). Pair with a location (city, zip, or lat+lon) — Meetup search is location-scoped. Leave empty if you only want group or event URLs. NOT a group or event URL.",
            "items": {
              "type": "string"
            }
          },
          "city": {
            "title": "City",
            "type": "string",
            "description": "City to scope the keyword search to (e.g. 'New York'). Combine with state/country for accuracy. Ignored for group-URL and event-URL modes. NOT a venue name."
          },
          "state": {
            "title": "State / region",
            "type": "string",
            "description": "State or region code for the search location (e.g. 'NY'). Optional refinement on top of city. Ignored outside search mode. NOT a country."
          },
          "country": {
            "title": "Country code",
            "type": "string",
            "description": "Two-letter country code for the search location (e.g. 'us', 'gb'). Optional. Ignored outside search mode."
          },
          "zip": {
            "title": "ZIP / postal code",
            "type": "string",
            "description": "Postal code to scope the search (e.g. '10001'). Alternative to city. Ignored outside search mode."
          },
          "lat": {
            "title": "Latitude",
            "type": "number",
            "description": "Latitude for a precise geo-scoped search (e.g. 40.7128). Use with lon and radius for map-bounded searches. Optional. Ignored outside search mode."
          },
          "lon": {
            "title": "Longitude",
            "type": "number",
            "description": "Longitude for a precise geo-scoped search (e.g. -74.006). Use with lat and radius. Optional. Ignored outside search mode."
          },
          "radius": {
            "title": "Radius (miles)",
            "type": "number",
            "description": "Search radius in miles around the lat/lon or city (e.g. 50). Defaults to Meetup's default when omitted. Ignored outside search mode."
          },
          "eventType": {
            "title": "Event type filter",
            "enum": [
              "ANY",
              "PHYSICAL",
              "ONLINE",
              "HYBRID"
            ],
            "type": "string",
            "description": "Restrict search results to a single format. PHYSICAL = in-person, ONLINE = virtual, HYBRID = both. Leave as 'Any' for all formats. Ignored outside search mode.",
            "default": "ANY"
          },
          "startDate": {
            "title": "Start date (from)",
            "type": "string",
            "description": "Only return search events starting on or after this ISO 8601 datetime (e.g. '2026-07-01T00:00:00Z'). Optional. Ignored outside search mode."
          },
          "endDate": {
            "title": "Start date (to)",
            "type": "string",
            "description": "Only return search events starting on or before this ISO 8601 datetime (e.g. '2026-08-01T00:00:00Z'). Optional. Ignored outside search mode."
          },
          "minRsvpCount": {
            "title": "Minimum RSVPs",
            "type": "integer",
            "description": "Only return search events with at least this many RSVPs (e.g. 10) — filters out tiny events. Optional. Ignored outside search mode."
          },
          "sortField": {
            "title": "Sort search by",
            "enum": [
              "RELEVANCE",
              "DATETIME"
            ],
            "type": "string",
            "description": "Order search results by RELEVANCE (Meetup's match score) or DATETIME (chronological). Defaults to RELEVANCE. Ignored outside search mode.",
            "default": "RELEVANCE"
          },
          "groupUrls": {
            "title": "Group URLs",
            "type": "array",
            "description": "Meetup group URLs or urlnames to pull every event from (e.g. 'https://www.meetup.com/nyc-tech/' or just 'nyc-tech'). Returns the group's upcoming or past events (see groupEventStatus). NOT an event URL.",
            "items": {
              "type": "string"
            }
          },
          "groupEventStatus": {
            "title": "Group events: upcoming or past",
            "enum": [
              "upcoming",
              "past"
            ],
            "type": "string",
            "description": "For group-URL mode, choose which events to return: upcoming (future, ascending) or past (history, most-recent first). Defaults to upcoming. Only applies to groupUrls.",
            "default": "upcoming"
          },
          "eventUrls": {
            "title": "Event URLs or IDs",
            "type": "array",
            "description": "Specific Meetup event URLs or numeric event IDs to fetch directly (e.g. 'https://www.meetup.com/nyc-tech/events/315015546/' or '315015546'). Best for enriching a known list of events. NOT a group URL.",
            "items": {
              "type": "string"
            }
          },
          "maxItems": {
            "title": "Max events",
            "minimum": 1,
            "type": "integer",
            "description": "Hard cap on total unique events returned across all modes (e.g. 200). Stops pagination and charging once reached. Defaults to 200. Raise for deep crawls."
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Proxy used for Meetup's GraphQL backend. Apify datacenter (default) is fast and cheap for this cookieless API; switch to RESIDENTIAL only if you hit blocks.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}