# Gohawaii — 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 gohawaii.com.

**Category:** Travel | **Website:** [www.gohawaii.com/trip-planning/events-festivals](https://www.gohawaii.com/trip-planning/events-festivals) | **Docs:** [parse.bot/marketplace/dacf612c-c518-44e0-9c0a-09d6f2969efb/gohawaii-com-api](https://parse.bot/marketplace/dacf612c-c518-44e0-9c0a-09d6f2969efb/gohawaii-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-gohawaii-com-api-dacf612c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event_details

Retrieve full details for a specific event including description, date/time, address, phone, email, and website. Requires the event URL path from search results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_path` | string | Yes | URL path of the event (e.g. /islands/o%CA%BBahu/events/49th-annual-prince-lot-hula-festival). Obtained from search_events results url field. |

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

### search_events

Search upcoming events across the Hawaiian Islands. Results are sorted by date proximity and auto-iterated. Each event includes title, island, city, date, categories, and a URL path usable with the detail endpoint. When island is omitted, events from all islands are returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `island` | string | No | Filter events by island name. |
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of events per page. |

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