# Eventup — 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.

> 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.

**Category:** Entertainment | **Website:** [eventup.com/](https://eventup.com/) | **Docs:** [parse.bot/marketplace/dfc2cccd-8de3-438e-9070-63ece2d6c00e/eventup-com-api](https://parse.bot/marketplace/dfc2cccd-8de3-438e-9070-63ece2d6c00e/eventup-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-eventup-com-api-dfc2cccd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_autocomplete

Get search autocomplete suggestions for a query string. Returns both venue suggestions and place/neighborhood suggestions. Place suggestions provide slug values suitable for the location parameter in search_venues.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query string (e.g., 'chi' returns Chicago-related suggestions). |

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

### get_featured_venues

Get featured/premium venues across all locations. Returns venues that are promoted or marked as featured on the platform. No input parameters required; returns the full list of featured venues platform-wide.

**Estimated cost:** Metered

_No parameters required._

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

### get_venue_filters

Get available filter options for a location including amenities, venue types, event types, neighborhoods, and look-and-feel categories with venue counts for each option. Useful for understanding what filtering dimensions and values are available in a given area.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | Yes | City or location name (e.g., 'Chicago', 'Las Vegas'). |
| `radius` | integer | No | Search radius in miles. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eventup-com-api-dfc2cccd/get_venue_filters \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","radius":"<integer>"}'
```

### search_venues

Search for venues by location with pagination support. Returns comprehensive venue listings including pricing, capacity, amenities, venue types, contact info, and location data. The API normalizes city names to slug format and attempts common state suffixes if the initial search fails. Paginated via integer page counter; each page returns up to 36 venues.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | Yes | City or location name (e.g., 'Las Vegas', 'Chicago', 'New York'). Automatically normalized to slug format for the API. |
| `page` | integer | No | Page number for pagination. |
| `radius` | integer | No | Search radius in miles. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eventup-com-api-dfc2cccd/search_venues \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","page":"<integer>","radius":"<integer>"}'
```
