{
  "openapi": "3.0.1",
  "info": {
    "title": "Eventbrite Events Intel - Discovery, Organizers, Prices",
    "description": "Discover and normalize public Eventbrite events by location, category, keyword, and date - the event-discovery layer Eventbrite removed from its API in 2020. Returns name, organizer, venue, date, price tiers, and availability plus organizer rollups. For event marketers, sponsors, and lead-gen.",
    "version": "0.1",
    "x-build-id": "5Jk3bmkpx7B3P0XeQ"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/seibs.co~eventbrite-events-intel/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-seibs.co-eventbrite-events-intel",
        "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/seibs.co~eventbrite-events-intel/runs": {
      "post": {
        "operationId": "runs-sync-seibs.co-eventbrite-events-intel",
        "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/seibs.co~eventbrite-events-intel/run-sync": {
      "post": {
        "operationId": "run-sync-seibs.co-eventbrite-events-intel",
        "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",
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "discover",
              "event_detail",
              "organizer_events"
            ],
            "type": "string",
            "description": "discover = find events by location/category/keyword/date and roll them up by organizer (the core wedge). event_detail = enrich specific event URLs with price tiers, availability, organizer, and performers. organizer_events = pull an organizer's public upcoming events. New-event monitoring is automatic when the actor runs under an Apify Schedule.",
            "default": "discover"
          },
          "location": {
            "title": "Location (Eventbrite location slug)",
            "type": "string",
            "description": "Eventbrite location slug, e.g. 'ny--new-york', 'ca--los-angeles', 'tx--austin', 'il--chicago', or 'online'. The slug is the part after /d/ in an Eventbrite discovery URL. Used in discover mode.",
            "default": "ny--new-york"
          },
          "locations": {
            "title": "Locations (multiple, optional)",
            "maxItems": 20,
            "type": "array",
            "description": "Query several location slugs in one run, e.g. ['ny--new-york', 'ca--san-francisco', 'online']. Overrides 'location' when set. Hard cap of 20.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "category": {
            "title": "Category",
            "type": "string",
            "description": "Eventbrite category slug or id: music, business, food-and-drink, community, arts, film-and-media, sports-fitness, health, science-and-tech, travel-outdoor, charity-and-causes, spirituality, family-education, holiday, government, fashion, home-and-lifestyle, auto-boat-and-air, hobbies, school-activities, other. Used in discover mode (with or without a keyword).",
            "default": ""
          },
          "categories": {
            "title": "Categories (multiple, optional)",
            "maxItems": 25,
            "type": "array",
            "description": "Several category slugs in one run, e.g. ['music', 'business']. Combines with each keyword. Hard cap of 25.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "keyword": {
            "title": "Keyword",
            "type": "string",
            "description": "Free-text search within the location, e.g. 'jazz', 'startup pitch', 'wine tasting'. Combine with a category to narrow further. Used in discover mode.",
            "default": ""
          },
          "keywords": {
            "title": "Keywords (multiple, optional)",
            "maxItems": 25,
            "type": "array",
            "description": "Several keyword queries in one run, e.g. ['jazz', 'hip hop']. Each is crossed with each location (and category). Hard cap of 25.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "date_from": {
            "title": "Start date (YYYY-MM-DD)",
            "type": "string",
            "description": "Only events starting on/after this date, e.g. '2026-07-01'. Leave blank for current + future events.",
            "default": ""
          },
          "date_to": {
            "title": "End date (YYYY-MM-DD)",
            "type": "string",
            "description": "Only events starting on/before this date, e.g. '2026-07-31'.",
            "default": ""
          },
          "dates_token": {
            "title": "Relative date window",
            "enum": [
              "",
              "today",
              "tomorrow",
              "this_week",
              "this_weekend",
              "next_week",
              "this_month",
              "next_month",
              "current_future"
            ],
            "type": "string",
            "description": "Instead of explicit dates, use a relative window. Ignored when date_from/date_to are set.",
            "default": ""
          },
          "event_urls": {
            "title": "Event URLs (event_detail mode)",
            "maxItems": 200,
            "type": "array",
            "description": "Eventbrite event page URLs to enrich, e.g. ['https://www.eventbrite.com/e/<slug>-tickets-<id>']. Required for event_detail mode. Hard cap of 200.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "organizer_urls": {
            "title": "Organizer URLs (organizer_events mode)",
            "maxItems": 25,
            "type": "array",
            "description": "Eventbrite organizer page URLs, e.g. ['https://www.eventbrite.com/o/<slug>-<id>']. Required for organizer_events mode. Hard cap of 25.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "include_pricing": {
            "title": "Enrich discovered events with price / tickets / performers",
            "type": "boolean",
            "description": "In discover mode, fetch each event's detail page to add price range, ticket availability, organizer name, and performers. Charges price_ticket_enrichment per event that yields a price/performer layer. Off by default for a fast, cheap discovery pass.",
            "default": false
          },
          "emit_organizer_rollups": {
            "title": "Emit per-organizer rollups",
            "type": "boolean",
            "description": "Aggregate the event set by organizer: event count, categories, venues, date span, and price range - the competitive-intel layer. Charges organizer_rollup per organizer emitted.",
            "default": true
          },
          "max_results_per_query": {
            "title": "Max events per query",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Cap on events returned per (location x category x keyword) query in discover mode. Default 50.",
            "default": 50
          },
          "max_organizer_events": {
            "title": "Max events per organizer",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Cap on events pulled per organizer in organizer_events mode. Default 25.",
            "default": 25
          },
          "monitor_webhook_url": {
            "title": "Monitor webhook URL (Slack / email, optional)",
            "type": "string",
            "description": "When this actor runs under an Apify Schedule (monitor mode), post the new-events digest to this Slack-compatible webhook URL.",
            "default": ""
          },
          "use_apify_proxy": {
            "title": "Use Apify Proxy",
            "type": "boolean",
            "description": "Route requests through Apify Proxy. The DATACENTER tier handles the first (httpx) pass; a RESIDENTIAL tier is provisioned for anti-bot escalation.",
            "default": true
          },
          "use_browser_fallback": {
            "title": "Anti-bot escalation (curl_cffi + browser)",
            "type": "boolean",
            "description": "When Eventbrite serves a 403/Cloudflare challenge from a datacenter IP, automatically escalate: switch to the RESIDENTIAL proxy and retry with curl_cffi Chrome TLS impersonation, then (if available) a headless browser. Turn off to use plain httpx only.",
            "default": true
          },
          "browser_cdp_url": {
            "title": "Warm browser CDP endpoint (optional)",
            "type": "string",
            "description": "Optional CDP/WebSocket endpoint of an already-running, anti-detect (UC-mode / real Chrome) browser. When set, the browser tier connects to it (inheriting its session + fingerprint) to pass a managed Cloudflare challenge. Can also be set as the BROWSER_CDP_URL env var.",
            "default": ""
          },
          "apify_proxy_groups": {
            "title": "Proxy groups (optional override)",
            "type": "array",
            "description": "Override the auto-selected proxy group. Leave empty to let the actor pick DATACENTER (httpx) + RESIDENTIAL (escalation).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "concurrency": {
            "title": "Max concurrent requests",
            "minimum": 1,
            "maximum": 8,
            "type": "integer",
            "description": "Parallel fetches. Eventbrite is rate-sensitive; default 4.",
            "default": 4
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}