{
  "openapi": "3.0.1",
  "info": {
    "title": "Eventbrite Scraper — Events, Organizers & Ticket Prices",
    "description": "Scrape Eventbrite events by city, keyword, category, date window or free-only - or paste any eventbrite.com search or event URL. One row per event: venue + full address, geo, organizer name & URL, ticket price range. No login, no API key.",
    "version": "0.1",
    "x-build-id": "YZMStcF3reqGfVUWF"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapersdelight~eventbrite-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapersdelight-eventbrite-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/scrapersdelight~eventbrite-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapersdelight-eventbrite-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/scrapersdelight~eventbrite-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapersdelight-eventbrite-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": {
          "startUrls": {
            "title": "Start URLs",
            "type": "array",
            "description": "Supported shapes: a search page 'https://www.eventbrite.com/d/tx--austin/all-events/' (any query string is kept and paged through, up to Max listing pages), a browse page 'https://www.eventbrite.com/b/tx--austin/music/' (rewritten to the /d/ search path, which is the one that actually carries data), and a single event page 'https://www.eventbrite.com/e/<slug>-tickets-<id>' (one row, built from that page alone — no lat/lon and no Eventbrite category tags, those only exist on search results). Organizer /o/ pages are rejected with an error rather than silently returning nothing.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "location": {
            "title": "City",
            "type": "string",
            "description": "A city as 'Austin, TX' or an Eventbrite place slug. Slugs are the safest input and are not US-only: 'tx--austin', 'ny--new-york', 'united-kingdom--london', 'australia--sydney'. Verified live: /d/united-kingdom--london/all-events/ returns 20 rows/page exactly like a US city."
          },
          "locations": {
            "title": "More cities (optional)",
            "type": "array",
            "description": "Scrape several cities in one run, e.g. ['Austin, TX', 'Miami, FL', 'united-kingdom--london']. When set, this REPLACES the single City field. Each city costs its own listing pages — the run walks (cities × categories × Max listing pages) search pages before it enriches anything.",
            "items": {
              "type": "string"
            }
          },
          "onlineOnly": {
            "title": "Online events only",
            "type": "boolean",
            "description": "Ignore the city and search Eventbrite's 'online' place instead. Measured 2026-08-12: /d/online/all-events/ returned 20 of 20 rows with is_online_event = true. Online events have no venue address and no lat/lon, so those columns come back null.",
            "default": false
          },
          "keyword": {
            "title": "Keyword",
            "type": "string",
            "description": "Free-text search, added to the URL as ?q=. Example: 'yoga' in Austin returned 20 yoga-titled events on page 1. Combine with a category to search inside it (music + 'jazz')."
          },
          "categories": {
            "title": "Categories",
            "type": "array",
            "description": "Eventbrite's own 21 categories. Pick none for ALL events. Each category you tick is a SEPARATE search — 3 categories × 3 pages = 9 listing fetches, so tick the ones you will actually use. All 21 slugs were verified live on 2026-08-12 (19-20 rows each on /d/tx--austin/<slug>/).",
            "items": {
              "type": "string",
              "enum": [
                "music",
                "business",
                "food-and-drink",
                "community",
                "arts",
                "film-and-media",
                "sports-and-fitness",
                "health",
                "science-and-tech",
                "travel-and-outdoor",
                "charity-and-causes",
                "spirituality",
                "family-and-education",
                "holiday",
                "government",
                "fashion",
                "home-and-lifestyle",
                "auto-boat-and-air",
                "hobbies",
                "school-activities",
                "other"
              ],
              "enumTitles": [
                "Music",
                "Business & Professional",
                "Food & Drink",
                "Community & Culture",
                "Performing & Visual Arts",
                "Film, Media & Entertainment",
                "Sports & Fitness",
                "Health & Wellness",
                "Science & Technology",
                "Travel & Outdoor",
                "Charity & Causes",
                "Religion & Spirituality",
                "Family & Education",
                "Seasonal & Holiday",
                "Government & Politics",
                "Fashion & Beauty",
                "Home & Lifestyle",
                "Auto, Boat & Air",
                "Hobbies & Special Interest",
                "School Activities",
                "Other"
              ]
            }
          },
          "freeOnly": {
            "title": "Free events only",
            "type": "boolean",
            "description": "Search Eventbrite's free-events path instead of the open one. Measured 2026-08-12 on Austin: 8 of 8 sampled rows came back price_min = 0 / is_free = true. There is deliberately NO 'paid only' switch — Eventbrite's /paid--events/ path returned the same unfiltered result set (2 of 8 sampled rows were free), so a paid toggle would be a lie. Filter on is_free yourself after the run.",
            "default": false
          },
          "startDate": {
            "title": "Events from (YYYY-MM-DD)",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
            "type": "string",
            "description": "Only events starting on or after this date. Added to the URL as ?start_date=. Measured: a 2026-09-01 → 2026-09-07 window returned rows whose start_date all fell inside it, versus 2026-08-14 → 2026-11-08 unfiltered."
          },
          "endDate": {
            "title": "Events until (YYYY-MM-DD)",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
            "type": "string",
            "description": "Only events starting on or before this date. Added to the URL as ?end_date=. Set both dates for a window; a run with a bad format stops with an error instead of quietly ignoring it."
          },
          "maxResults": {
            "title": "Max events (your cost cap)",
            "minimum": 1,
            "type": "integer",
            "description": "Hard cap on events per run, and therefore your hard cost cap: 20 events = $0.09, 1,000 = $4.50. Duplicate cards are dropped before billing and never count against it. Raise the run timeout for anything over ~1,000.",
            "default": 20
          },
          "maxPages": {
            "title": "Max listing pages per search",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Listing pages to walk per (city × category). Each page carries ~20 events. Eventbrite reports page_count = 49 but still serves page 50, and returns nothing on page 51 — measured 2026-08-13 on Austin, London and New York — so 50 pages (~1,000 events) is the real ceiling per search and values above it just stop early.",
            "default": 3
          },
          "fetchDetails": {
            "title": "Fetch organizer + ticket price (2nd request per event)",
            "type": "boolean",
            "description": "ON (default): one extra request per event adds organizer_name, organizer_url, price_min, price_max, price_currency, is_free, ticket_availability and the ISO start/end datetimes — none of which exist on the listing page. OFF: roughly 20x fewer requests and a much faster run, and you keep every other field (name, schedule, full venue address, lat/lon, categories, image). The price per event is IDENTICAL either way — this only trades time for the organizer and price columns.",
            "default": true
          },
          "concurrency": {
            "title": "Detail-page concurrency",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "How many event detail pages to fetch in parallel during enrichment. 6 is what the published throughput numbers were measured at; going much higher raises the share of requests the WAF challenges.",
            "default": 6
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Apify RESIDENTIAL (US) with a fresh session per request, and that default is measured, not cautious: on 2026-07-30 a datacenter run was AWS-WAF challenged on ~87% of requests, while residential was usable on 16 of 16 listing fetches. You can override it here if your own testing disagrees — the Actor does not solve challenges, it just retries twice and then reports the failure.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "US"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}