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

> Access data from vermont.com.

**Category:** Entertainment | **Website:** [vermont.com/](https://vermont.com/) | **Docs:** [parse.bot/marketplace/5cbf4fe4-fb2a-45fb-a7ae-91899cc2ff7b/vermont-com-api](https://parse.bot/marketplace/5cbf4fe4-fb2a-45fb-a7ae-91899cc2ff7b/vermont-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-vermont-com-api-5cbf4fe4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event_by_url

Retrieve full details of a community event from its vermont.com calendar page. Accepts either a full URL (e.g. https://vermont.com/calendar/vermont-brewers-festival/) or just the event slug (e.g. vermont-brewers-festival). Returns title, date, time, venue, address, description, event website link, and featured image when available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full vermont.com event URL (e.g. https://vermont.com/calendar/37th-annual-burke-fall-festival/) or the event slug (e.g. 37th-annual-burke-fall-festival). |

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