# Hello Burlington VT — 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.

> Retrieve detailed community event information from the Hello Burlington VT tourism site by providing an event URL, including details like event names, dates, descriptions, and venue information. Perfect for discovering and accessing comprehensive Burlington area events to plan your visits and activities.

**Category:** Entertainment | **Website:** [http://helloburlingtonvt.com/](http://helloburlingtonvt.com/) | **Docs:** [parse.bot/marketplace/00fac577-0e10-4b9d-af6d-dab11e6f452d/helloburlingtonvt-com-api](https://parse.bot/marketplace/00fac577-0e10-4b9d-af6d-dab11e6f452d/helloburlingtonvt-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-helloburlingtonvt-com-api-00fac577/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event_by_url

Retrieve full details for a single community event given its URL path or full URL. The URL contains an event slug and numeric record ID (e.g. /event/art-amplified/7400/). Returns venue, dates, times, admission, categories, description, coordinates, and images.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Event URL path or full URL containing the event slug and numeric ID, e.g. /event/art-amplified-featuring-thea-wren-and-moss-cycle/7400/ or the full https://www.helloburlingtonvt.com/event/... URL. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-helloburlingtonvt-com-api-00fac577/get_event_by_url \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### list_events

List upcoming community events within a date range. Returns events occurring between date_from and date_to (inclusive), sorted by occurrence date. Each event includes title, start/end dates, and a URL path to its detail page. Results are auto-iterated; the SDK manages pagination internally.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date_from` | string | Yes | Start of the date range in ISO format YYYY-MM-DD (e.g. 2026-07-15). |
| `date_to` | string | Yes | End of the date range in ISO format YYYY-MM-DD (e.g. 2026-08-15). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-helloburlingtonvt-com-api-00fac577/list_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date_from":"<string>","date_to":"<string>"}'
```
