BrowserAct Logo
template bg

Template of Eventbrite Event Details Scraper-2025-11-19-2

Detail

Workflow Documentation

I. Data Extraction Process Design

This workflow adopts a two-stage extraction strategy:

Stage 1: List Page Data Extraction

  • Extraction Location: Activity homepage
  • Extraction Content: Activity name, Activity URL

Stage 2: Detail Page Data Extraction

  • Extraction Location: Activity detail page
  • Extraction Content: Detailed activity information

Design Purpose

The two-stage extraction approach is designed to ensure the accuracy of activity URL extraction.


II. Core Parameter Configuration

1. Page_Limit (Page Limit)

Function:
Sets the number of pages you want to extract

Default Setting:
2 pages

Working Mechanism:
Works in conjunction with the Loop node. The loop automatically exits after completing data extraction for the specified number of pages.

Example:

Page_Limit = 2
→ Automatically exits the loop after completing 2 pages of data extraction

2. Maximum Focused Item Count

Function:
Sets the number of activities you want to extract

Current Page Information:
Each page contains 25 Items in the activity list


📋 Configuration Rules

Case A: Extraction Count < Total Items on Current Page

Configuration Method:
Focused Item Count = Desired extraction count

Example:

Current page has 25 Items

Want to extract 5 items → Set Focused Item Count = 5
Want to extract 10 items → Set Focused Item Count = 10

Result:
Only extracts the first N activities on the current page, does not proceed to the next page


Case B: Need to Continue to Next Page

Configuration Method:
Focused Item Count = Actual Item count on current page (25)

Example:

Current page has 25 Items

Want to extract multi-page data → Set Focused Item Count = 25

Result:
After completing extraction of all Items on the current page, automatically proceeds to the next page in conjunction with the Loop node

ad image