Discover/Feverup API
live

Feverup APIfeverup.com

Access Fever's event catalog via API: search events by city, filter by category, and retrieve full event details including pricing, venue, and ratings.

Endpoint health
verified 3d ago
search_events
get_category_events
get_city_events
get_exhibition_expos
get_event_detail
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Feverup API?

The Feverup API covers 6 endpoints for discovering live events and experiences across cities worldwide. Starting with list_cities to retrieve supported city codes, you can then call search_events with a keyword and city code to get paginated results including ticket price, rating, venue, and upcoming session data for each matching event.

Try it

No input parameters required.

api.parse.bot/scraper/e12557d2-bcfd-4498-a035-9341769b02b4/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e12557d2-bcfd-4498-a035-9341769b02b4/list_cities' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace feverup-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.feverup_api import Feverup, City, EventSummary, Event, EventNotFound

client = Feverup()

# List all supported cities
for city in client.cities.list():
    print(city.city_name, city.city_code, city.is_top_city)

# Construct a city and search for events
nyc = client.city("NYC")
for event in nyc.events.search(query="concert", limit=5):
    print(event.name, event.price, event.currency, event.rating)

# Browse popular events in a city
for event in nyc.events.list(limit=3):
    print(event.name, event.location_name, event.num_ratings)

# Filter by category
for event in nyc.events.by_category(category="candlelight-concerts", limit=3):
    print(event.name, event.price, event.next_sessions)

# Get exhibition and expo events
for event in nyc.events.exhibitions(limit=3):
    print(event.name, event.city_name, event.cover_image_url)

# Drill into event details
for summary in nyc.events.search(query="museum", limit=1):
    detail = summary.details()
    print(detail.title, detail.venue.name, detail.venue.city)
    print(detail.start_date, detail.end_date, detail.price, detail.currency)
    print(detail.rating, detail.description[:100])
All endpoints · 6 totalmissing one? ·

Returns all supported Fever cities with their codes, names, slugs, and metadata. The full city list is returned in a single response with no pagination. Each city's city_code can be used to scope event queries.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "cities": "array of city objects with city_id, city_code, city_name, country_name, slug, thumbnail_url, and is_top_city"
  },
  "sample": {
    "data": {
      "cities": [
        {
          "slug": "new-york",
          "city_id": 6,
          "city_code": "NYC",
          "city_name": "New York",
          "is_top_city": true,
          "country_name": "United States",
          "thumbnail_url": "https://applications-media.feverup.com/image/upload/fever2/city/photos/web/new-york-560x560.jpg"
        }
      ]
    },
    "status": "success"
  }
}

About the Feverup API

City Discovery and Event Search

list_cities returns a flat array of all supported Fever cities — each object includes city_id, city_code, city_name, country_name, slug, thumbnail_url, and an is_top_city flag. The city_code value (e.g. NYC, LON, PAR) is the key input for scoping all other endpoints. search_events accepts a required query string and an optional city_code, returning paginated results with fields like rating, num_ratings, price, currency, cover_image_url, and location metadata. Pagination is managed via a zero-based page integer; when next_page is null, you have reached the last page.

Category and Popularity Filtering

get_category_events filters results by a category slug — examples include candlelight-concerts, exhibitions, and immersive-experiences — while sharing the same response shape as search_events. get_city_events drops the category constraint and returns events ordered by popularity for a given city_code. get_exhibition_expos is a specialized endpoint combining an expo keyword search with the exhibitions category, useful for surfacing expo-specific listings without manually constructing that query yourself.

Event Detail

get_event_detail accepts a numeric plan_id (the id field from any listing endpoint) and returns the full event record: title, url, price, currency, rating, category, end_date, an images array of URL strings, and a structured venue object containing name, address, city, region, and country. The end_date field follows ISO datetime format and may be null for open-ended events.

Reliability & maintenanceVerified

The Feverup API is a managed, monitored endpoint for feverup.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when feverup.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official feverup.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a city-specific event discovery app using get_city_events sorted by popularity and get_event_detail for full venue and pricing info.
  • Aggregate candlelight concerts or immersive experience listings across multiple cities via get_category_events with different city_code values.
  • Power a travel planning tool that surfaces upcoming events in a destination city using search_events with arrival-city codes from list_cities.
  • Create a deals or price-comparison feed by collecting price and currency fields from event search results across multiple cities.
  • Index exhibition and expo listings for a niche content site using get_exhibition_expos across all supported cities.
  • Enrich venue data pipelines with structured venue.address, venue.region, and venue.country fields from get_event_detail.
  • Build a rating-based recommendation engine using rating and num_ratings fields returned by search_events or get_category_events.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Feverup have an official developer API?+
Fever does not publish a public developer API or documentation portal for third-party access to its event catalog.
What does `get_event_detail` return that the listing endpoints do not?+
get_event_detail returns fields not present in listing results: a full images array, the url of the event page on Feverup, a structured venue object with street address and region, and the end_date in ISO datetime format. Listing endpoints return a summary location string and cover image but not the complete venue breakdown.
How does pagination work across the search and listing endpoints?+
All listing endpoints (search_events, get_category_events, get_city_events, get_exhibition_expos) use a zero-based integer page parameter. The response includes a next_page field that is an integer when more results exist and null when you have reached the final page. The total_count field indicates the full number of matching events.
Does the API expose ticket purchase links or real-time seat availability?+
Not currently. The API covers event metadata, pricing, ratings, venue details, and session timing, but does not return direct ticketing or checkout URLs beyond the url field on get_event_detail, nor real-time seat inventory. You can fork this API on Parse and revise it to add an endpoint targeting ticketing data if that surface becomes accessible.
Can I filter events by date range or upcoming session time?+
Date-range filtering is not a supported input parameter on any current endpoint. The end_date field is available per-event in get_event_detail, and listing results include upcoming session times, but you cannot pass a start or end date as a filter. You can fork this API on Parse and revise it to add date-based filtering logic on top of the returned session data.
Page content last updated . Spec covers 6 endpoints from feverup.com.
Related APIs in EntertainmentSee all →
eventup.com API
Search EventUp for event venues by city, browse featured venues, fetch available venue filter facets for a location, and get autocomplete suggestions for venue and place queries.
allevents.in API
Search and discover events from AllEvents.in by name, date, or category, then view detailed information like descriptions, timings, and venue details. Filter through available event categories to find exactly what you're looking for.
rausgegangen.de API
Discover events happening in German cities by searching for concerts, festivals, and shows—filtering by location, date, or category to find exactly what you're looking for. Get detailed information about venues, artists, and ticket lotteries all in one place.
eventbrite.com API
Search Eventbrite for events by keyword, location, or category. Retrieve full event details, ticket pricing and availability, organizer profiles, and batch event data.
etix.com API
Search for live events across venues and categories, discover what's playing today or this weekend, and check real-time ticket availability for concerts, shows, and other ticketed events. Get detailed event information and browse featured homepage listings to find and book tickets for your next outing.
axs.com API
Search for events, performers, and venues across AXS.com to find tickets, pricing, and availability information in your area or by category. Browse featured events, explore venues by city, and access detailed event information all in one place.
lu.ma API
Find upcoming events happening in 77+ cities worldwide through Luma, with access to essential details like event titles, dates, venues, organizers, and registration links. Search across multiple cities to discover events that match your interests and easily register through the provided URLs.
seatgeek.com API
Search for events and performers, view ticket listings with pricing data, and explore venue information across multiple event categories. Get real-time insights into event details, ticket price trends, and what's currently trending to help you find and compare tickets.