# Feverup — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Discover and search live events, exhibitions, and experiences happening in cities worldwide, filtering by categories to find concerts, shows, expos, and more that match your interests. Get detailed information about any event including schedules, descriptions, and venue details to plan your next outing.

**Category:** Entertainment | **Website:** [feverup.com/](https://feverup.com/) | **Docs:** [parse.bot/marketplace/77487283-3010-45a2-9fac-a20c42a2b690/feverup-com-api](https://parse.bot/marketplace/77487283-3010-45a2-9fac-a20c42a2b690/feverup-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-feverup-com-api-77487283/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_events

Returns events filtered by category slug for a given city. Same response shape as search_events. Paginates via an integer page cursor.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | Yes | Category slug to filter by (e.g. 'candlelight-concerts', 'exhibitions', 'immersive-experiences'). |
| `city_code` | string | No | City code from list_cities endpoint (e.g. 'NYC', 'LAX', 'LON', 'PAR'). |
| `page` | integer | No | Page number for pagination (zero-based). Managed automatically by the SDK. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-feverup-com-api-77487283/get_category_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","city_code":"<string>","page":"<integer>"}'
```

### get_city_events

Returns popular events for a given city ordered by popularity. Same response shape as search_events. Paginates via an integer page cursor.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city_code` | string | No | City code from list_cities endpoint (e.g. 'NYC', 'LAX', 'LON', 'PAR'). |
| `page` | integer | No | Page number for pagination (zero-based). Managed automatically by the SDK. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-feverup-com-api-77487283/get_city_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city_code":"<string>","page":"<integer>"}'
```

### get_event_detail

Returns full details of a single event by its numeric plan ID, including title, description, images, venue information, rating, pricing, and date range. The plan_id is the numeric id field from any event listing endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `plan_id` | string | Yes | Numeric event/plan ID from search results (e.g. '385958', '165091'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-feverup-com-api-77487283/get_event_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"plan_id":"<string>"}'
```

### get_exhibition_expos

Returns exhibition and expo events combining a keyword search for 'expo' with the exhibitions category filter. Same response shape as search_events. Paginates via an integer page cursor.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city_code` | string | No | City code from list_cities endpoint (e.g. 'NYC', 'LAX', 'LON', 'PAR'). |
| `page` | integer | No | Page number for pagination (zero-based). Managed automatically by the SDK. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-feverup-com-api-77487283/get_exhibition_expos \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city_code":"<string>","page":"<integer>"}'
```

### list_cities

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-feverup-com-api-77487283/list_cities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_events

Full-text search over events and experiences within a city. Returns paginated results ordered by relevance. Each result includes pricing, ratings, venue, and upcoming session times. Paginates via an integer page cursor returned as next_page (null signals the last page).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city_code` | string | No | City code from list_cities endpoint (e.g. 'NYC', 'LAX', 'LON', 'PAR'). |
| `page` | integer | No | Page number for pagination (zero-based). Managed automatically by the SDK. |
| `query` | string | Yes | Search keyword (e.g. 'concert', 'art', 'museum'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-feverup-com-api-77487283/search_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city_code":"<string>","page":"<integer>","query":"<string>"}'
```
