Feverup Event Scraper avatar

Feverup Event Scraper

Pricing

Pay per usage

Go to Apify Store
Feverup Event Scraper

Feverup Event Scraper

Automate event data extraction. Scrape Feverup events, dates, venues & details in bulk. Ideal for event aggregators, marketers & analysts. Fast, reliable web scraping for event discovery & analytics.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Shahid Irfan

Shahid Irfan

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Extract event listings and detailed event information from Feverup category pages in a structured, ready-to-use dataset. Collect titles, pricing, venue details, dates, ratings, and direct event links for research, analysis, and monitoring workflows.

Features

  • Category extraction - Collects events from a Feverup category URL.
  • Detailed enrichment - Optionally includes extended event details for each listing.
  • Clean structured output - Returns normalized fields suitable for spreadsheets, BI tools, and automations.
  • Configurable limits - Control result count and pagination depth.
  • Proxy-ready runs - Supports Apify proxy configuration for reliable larger runs.

Use Cases

Event Market Research

Track what event categories are active in a city and compare titles, venues, and availability windows. Build snapshots to spot demand patterns over time.

Competitive Monitoring

Monitor pricing, ratings, and catalog changes for specific categories. Use recurring runs to detect newly added or removed events.

Content and Editorial Planning

Gather event metadata to support city guides, event roundups, and recommendation content. Keep publishing pipelines fed with fresh data.

Data Enrichment Pipelines

Use collected event URLs and IDs to enrich internal datasets. Combine with CRM, analytics, or campaign data for deeper insights.

Input Parameters

ParameterTypeRequiredDefaultDescription
startUrlStringNohttps://feverup.com/en/new-york/theater-comedy-showsFeverup category URL to scrape.
results_wantedIntegerNo20Maximum number of events to save.
max_pagesIntegerNo10Maximum pages to scan for additional events.
collectDetailsBooleanNotrueInclude extended event details when available.
proxyConfigurationObjectNo{"useApifyProxy": true}Proxy settings for improved reliability.

Output Data

Each dataset item can include:

FieldTypeDescription
idNumberEvent identifier.
titleStringEvent title.
venueStringMain venue name.
city_slugStringCity slug from the category URL.
category_slugStringCategory slug from the category URL.
first_active_session_dateStringEarliest available session date.
last_active_session_dateStringLatest available session date.
price_amountNumberDisplayed price value.
price_currencyStringDisplayed currency code.
price_typeStringPrice format indicator (for example, from, single).
rating_averageNumberAverage rating value.
rating_countNumberNumber of ratings.
urlStringDirect event URL.
description_textStringPlain-text event description.
detail_venueStringVenue name from detailed data.
addressStringVenue address.
latitudeNumberVenue latitude.
longitudeNumberVenue longitude.
scraped_atStringISO timestamp when the item was collected.

Usage Examples

Basic Extraction

{
"startUrl": "https://feverup.com/en/new-york/theater-comedy-shows"
}

Limit Results for Quick Checks

{
"startUrl": "https://feverup.com/en/new-york/theater-comedy-shows",
"results_wanted": 30,
"collectDetails": false
}

Deeper Collection with Details

{
"startUrl": "https://feverup.com/en/new-york/theater-comedy-shows",
"results_wanted": 120,
"max_pages": 10,
"collectDetails": true,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Sample Output

{
"id": 335503,
"title": "Wicked on Broadway",
"venue": "Gershwin Theatre NYC",
"city_slug": "new-york",
"category_slug": "theater-comedy-shows",
"first_active_session_date": "2026-02-24T19:00:00-05:00",
"last_active_session_date": "2026-04-21T19:00:00-04:00",
"price_amount": 276.5,
"price_currency": "USD",
"rating_average": 5,
"rating_count": 14,
"url": "https://feverup.com/m/335503",
"detail_venue": "Gershwin Theatre NYC",
"address": "222 West 51st Street, 10019",
"latitude": 40.762432,
"longitude": -73.985121,
"scraped_at": "2026-02-24T14:28:39.040Z"
}

Tips for Best Results

Choose Valid Category URLs

  • Use Feverup category pages in the format /language/city/category.
  • Start with a known working city/category pair before scaling.

Tune Limits to Your Goal

  • Use results_wanted: 20-50 for quick tests.
  • Increase results_wanted and max_pages for broader collection.

Use Proxy for Larger Runs

  • Enable Apify proxy when collecting many items or running frequently.
  • Residential proxy groups can improve consistency on longer runs.

Integrations

  • Google Sheets - Analyze events in shared dashboards.
  • Airtable - Build searchable event databases.
  • Looker Studio / Power BI - Create trend and pricing reports.
  • Make / Zapier - Trigger automations after each run.
  • Webhooks - Send fresh data to your own systems.

Frequently Asked Questions

Can I scrape multiple categories in one run?

This actor accepts one category URL per run through startUrl.

How many events can I collect?

Set results_wanted to your target volume and adjust max_pages if needed.

Should I enable details?

Set collectDetails to true when you need descriptions, location fields, and richer event metadata.