Fever Events Scraper avatar

Fever Events Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Fever Events Scraper

Fever Events Scraper

[๐Ÿ’ฐ $1.0 / 1K] Scrape live events and experiences from Fever (feverup.com) by city or URL. Get titles, venues, addresses, map coordinates, session dates, ticket prices, ratings, images, and full descriptions. Covers concerts, theater, candlelight, immersive shows, food, and more worldwide.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

SolidCode

SolidCode

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Pull live events and experiences from Fever (feverup.com) at scale โ€” concerts, candlelight tributes, theater, immersive shows, museums, and food experiences โ€” with venues, exact addresses, map coordinates, ticket prices, ratings, and upcoming session dates. Built for event marketers, ticketing analysts, experience aggregators, and market researchers who need Fever's full city lineups as clean structured rows, without clicking through endless carousels or guessing category slugs.

Why This Scraper?

  • Whole-city event feeds in one run โ€” hand it a city name and get that city's entire Fever lineup, no category slugs to hunt down. In testing, a single New York run returns 200+ deduplicated events spanning every vertical.
  • Every session date, not just the next showtime โ€” open-run candlelight concerts and immersive experiences return every upcoming session date across the next ~4 months as a structured sessions[] array, commonly 60โ€“120 dated entries, each with its own minimum price and remaining-ticket count.
  • Seven Fever verticals covered โ€” Candlelight concerts, theater & comedy, live music, immersive experiences, museums & attractions, food & drink, and tours & trips.
  • Exact venue location on every event โ€” full street address plus latitude/longitude map coordinates, ready to plot on a map or geo-join to your own data.
  • Three ticket signals per event โ€” a "from" price with currency code, a free-event flag (isFree), and a live sold-out flag (isSoldOut) computed from real availability rather than guessed.
  • Worldwide and multi-locale โ€” US and European cities alike (New York, London, Madrid, Paris), addressed by plain city name or by pasting a Fever URL in any language; the locale in the URL flows straight through to localized titles and descriptions.
  • Three input modes in one actor โ€” a whole-city feed, a single category page, or one individual event URL (/m/{id}), freely mixed in the same run.
  • Star ratings and hero imagery on every row โ€” average rating, total rating count, and the full-resolution event image URL, so listings are dashboard-ready out of the box.

Use Cases

Event Marketing & Promotion

  • Track competing concerts, shows, and experiences launching in your city each week
  • Benchmark your event's price and rating against every comparable Fever listing
  • Spot which verticals (candlelight, immersive, food) are saturated or underserved in a market
  • Build a promotional calendar from upcoming session dates across multiple venues

Ticketing & Pricing Intelligence

  • Monitor "from" prices across categories and cities to position your own tickets
  • Flag near-sold-out dates using per-session remaining-ticket counts
  • Compare weekday vs. weekend pricing across a venue's full session calendar
  • Detect free events entering a market with the isFree flag

Experience Aggregation & Listings

  • Populate a things-to-do site or app with structured event rows and images
  • Keep a city guide fresh with venues, coordinates, and next available dates
  • Power a map view directly from per-event latitude/longitude
  • Deep-link every listing back to its Fever page for booking

Market Research & Trend Analysis

  • Measure event supply by category across dozens of cities in one run
  • Track how immersive and candlelight formats spread between markets
  • Analyze rating distributions to find the highest-rated experiences in a region
  • Build historical snapshots by scheduling recurring runs

Lead Generation & Venue Outreach

  • Assemble a list of active venues and their addresses in a target city
  • Identify high-volume promoters running many concurrent experiences
  • Prioritize outreach by rating count as a signal of audience size

Getting Started

Scrape a Whole City

The simplest run โ€” just name a city and get its full Fever lineup:

{
"cities": ["New York"]
}

Fast Listing-Only Run

Turn off details for a quicker, lighter pass that returns only the listing fields (title, venue, price, rating, first/last date):

{
"cities": ["Chicago"],
"includeEventDetails": false,
"maxResults": 100
}

Harvest a Single Category

Paste a category URL to page deep into one vertical โ€” this returns far more of that category than the city feed surfaces:

{
"startUrls": ["https://feverup.com/en/london/candlelight"],
"maxResults": 200
}

Mix city names, a category page, and a single event URL in one run, with full enrichment on:

{
"cities": ["New York", "Madrid"],
"startUrls": [
"https://feverup.com/en/london/theater-comedy-shows",
"https://feverup.com/m/677219"
],
"includeEventDetails": true,
"maxResults": 300
}

Input Reference

What to Scrape

ParameterTypeDefaultDescription
citiesarray of strings["New York"]City names whose Fever events you want, e.g. "New York", "London", "Madrid". Add one or many. Leave empty if you are pasting Fever URLs instead.
startUrlsarray of strings[]Fever links pasted directly โ€” a city page (https://feverup.com/en/new-york), a category page (https://feverup.com/en/new-york/theater-comedy-shows), or a single event page (https://feverup.com/m/677219). The type is detected automatically.

Options

ParameterTypeDefaultDescription
includeEventDetailsbooleantrueEnrich each event with its full description, complete street address, map coordinates, and every session date. Turn off for faster runs that return only listing fields.
maxResultsinteger100Maximum events to collect per city or URL. Set to 0 to collect all available. You pay per event returned, so a sensible limit keeps costs predictable.

Output

Each event is one flat row. Session dates ride along as a nested sessions[] array, so a long-running experience never explodes into many billable rows. Here is a representative result with full details enabled:

{
"id": 677219,
"title": "Candlelight: A Tribute to Coldplay",
"url": "https://feverup.com/m/677219",
"city": "New York",
"citySlug": "new-york",
"category": "Candlelight",
"categorySlug": "candlelight",
"venueName": "Central Presbyterian Church",
"address": "64 E 68th St, New York, NY 10065, USA",
"latitude": 40.7681,
"longitude": -73.9668,
"firstSessionDate": "2026-07-25",
"lastSessionDate": "2026-11-14",
"sessions": [
{ "date": "2026-07-25", "minPrice": 35, "availableTickets": 48, "status": "available" },
{ "date": "2026-08-01", "minPrice": 35, "availableTickets": 12, "status": "available" }
],
"priceAmount": 35,
"priceCurrency": "USD",
"priceType": "from",
"isFree": false,
"isSoldOut": false,
"ratingAverage": 4.8,
"ratingCount": 1243,
"description": "Enjoy a live, multi-sensory musical experience under the glow of candlelight...",
"imageUrl": "https://images.feverup.com/example.jpg",
"scrapedAt": "2026-07-21T14:30:00Z"
}

Core Fields

FieldTypeDescription
idnumberUnique Fever event (plan) identifier
titlestringEvent title
urlstringDirect Fever event page URL (/m/{id})
categorystringHuman-readable category name (e.g. "Candlelight")
categorySlugstringCategory slug from the URL (null for whole-city cards)
citystringHuman-readable city name
citySlugstringCity slug used in the URL
ratingAveragenumberAverage star rating (null when Fever hides it)
ratingCountnumberNumber of ratings behind the average
scrapedAtstringISO 8601 timestamp of collection

Location & Venue

Populated when includeEventDetails is on.

FieldTypeDescription
venueNamestringVenue name
addressstringFull street address
latitudenumberVenue latitude
longitudenumberVenue longitude

Pricing & Availability

FieldTypeDescription
priceAmountnumberStarting ("from") ticket price
priceCurrencystringCurrency code (e.g. USD, EUR, GBP)
priceTypestringPrice qualifier (e.g. "from")
isFreebooleanWhether the event is free
isSoldOutbooleanWhether all dates in the window are sold out

Session Dates

FieldTypeDescription
firstSessionDatestringEarliest active session date
lastSessionDatestringLatest active session date
sessionsobject[]Every upcoming session date across the next ~4 months; each entry has date, minPrice, availableTickets, and status

Media

FieldTypeDescription
imageUrlstringPrimary event image URL
descriptionstringFull event description text (with includeEventDetails on)

Tips for Best Results

  • Start small โ€” set maxResults to 25โ€“50 on your first run to preview the fields, then scale up once the shape matches your needs.
  • City names for breadth, category URLs for depth โ€” a city-name run pulls the whole curated feed across every vertical, while a category URL like https://feverup.com/en/new-york/candlelight pages deep into just that vertical and returns far more of it than the city feed ever surfaces. Use city names to survey a market, category URLs to exhaustively harvest one type.
  • Mine the sessions[] array โ€” for open-run experiences it lists every bookable date with its own remaining-ticket count, so you can spot near-sold-out dates or map demand across a booking window that convenience fields alone can't show.
  • Toggle details for speed vs. depth โ€” turn includeEventDetails off for fast price and rating scans; turn it on for address, coordinates, description, and the full session calendar.
  • Paste one event URL to monitor it โ€” a single /m/{id} URL re-checks that event's price, availability, and session list, ideal for a scheduled watch on a specific show.
  • Match the locale in the URL โ€” paste a /es/ or /fr/ Fever URL to receive localized titles and descriptions; city names default to the English feed.
  • Combine inputs freely โ€” city names, category URLs, and event URLs can all live in one run and are collected in order.

Pricing

From $1.00 per 1,000 results โ€” flat pay-per-result, so your cost tracks exactly the number of events you collect. Bronze, Silver, and Gold subscribers pay progressively less; the table below shows total cost at each discount tier.

ResultsNo discountBronzeSilverGold
100$0.120$0.115$0.105$0.100
1,000$1.20$1.15$1.05$1.00
10,000$12.00$11.50$10.50$10.00
100,000$120.00$115.00$105.00$100.00

A "result" is one event row in the output dataset. There are no compute or time-based charges โ€” you pay per result, plus a small fixed per-run start fee. Platform fees depend on your Apify plan.

Integrations

Export data in JSON, CSV, Excel, XML, or RSS. Connect to 1,500+ apps via:

  • Zapier / Make / n8n โ€” Workflow automation
  • Google Sheets โ€” Direct spreadsheet export
  • Slack / Email โ€” Notifications on new results
  • Webhooks โ€” Trigger custom APIs on run completion
  • Apify API โ€” Full programmatic access

This actor is designed for legitimate event research, market analysis, and listing aggregation. You are responsible for complying with applicable laws and Fever's Terms of Service. Collect only publicly available information, respect intellectual property, and do not use extracted data for spam, harassment, or any unlawful purpose.