Discover/gohawaii API
live

gohawaii APIgohawaii.com

Search and retrieve Hawaii events from gohawaii.com. Filter by island, paginate results, and get full event details including dates, addresses, and contacts.

This API takes change requests — .
Endpoint health
verified 3h ago
search_events
get_event_details
1/2 passing latest checkself-healing
Endpoints
2
Updated
4h ago

What is the gohawaii API?

The gohawaii.com API provides 2 endpoints for discovering and retrieving Hawaii events listed on the official Hawaii Tourism Authority site. Use search_events to query upcoming events across all islands or filter by a specific island, and use get_event_details to fetch a full event record including description, venue address, contact phone, email, and external website.

Try it
Page number for pagination.
Filter events by island name.
Number of events per page.
api.parse.bot/scraper/c72dde41-5e16-4da7-b8a5-b4b92ee9d46e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X POST 'https://api.parse.bot/scraper/c72dde41-5e16-4da7-b8a5-b4b92ee9d46e/search_events' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "page": "1",
  "island": "oahu",
  "per_page": "12"
}'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace gohawaii-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: GoHawaii Events SDK — bounded, re-runnable; every call capped."""
from parse_apis.gohawaii_com_api import GoHawaii, Island, EventNotFound

client = GoHawaii()

# Search upcoming events on O'ahu, capped at 3 results
for event in client.events.search(island=Island.OAHU, limit=3):
    print(event.title, event.date, event.city)

# Drill down: get the first event and fetch its full details
event = client.events.search(island=Island.MAUI, limit=1).first()
try:
    detail = event.details()
    print(detail.title, detail.date_time, detail.address)
except EventNotFound as e:
    print(f"Event gone: {e.event_path}")

print("exercised: events.search, event.details")
All endpoints · 2 totalmissing one? ·

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.

Input
ParamTypeDescription
pageintegerPage number for pagination.
islandstringFilter events by island name.
per_pageintegerNumber of events per page.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "total": "total number of matching events",
    "events": "array of event objects with title, island, city, date, categories, url, and more",
    "per_page": "number of events per page"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 69,
      "events": [
        {
          "nid": "91756",
          "url": "https://www.gohawaii.com/islands/o%CA%BBahu/events/49th-annual-prince-lot-hula-festival",
          "city": "Honolulu",
          "date": "2026-07-14",
          "title": "49th Annual Prince Lot Hula Festival",
          "island": "Oʻahu",
          "end_dates": [
            "1784268000",
            "1784455199"
          ],
          "categories": [
            "Events",
            "Craft Fairs",
            "Festivals & Parades",
            "Hawaiian Culture",
            "Hawaiian Music",
            "Hula",
            "Live Music"
          ],
          "description": "49th Annual Prince Lot Hula Festival",
          "start_dates": [
            "1784086200",
            "1784282400"
          ]
        }
      ],
      "per_page": 5
    },
    "status": "success"
  }
}

About the gohawaii API

Searching Events

The search_events endpoint accepts POST requests with optional island, page, and per_page parameters. When island is omitted, results span all Hawaiian Islands. Each event object in the events array includes title, island, city, date, categories, and a url path that serves as the key input to the detail endpoint. The total field in the response lets you calculate how many pages to iterate for a given query.

Retrieving Event Details

The get_event_details endpoint takes an event_path string — for example /islands/o%CA%BBahu/events/49th-annual-prince-lot-hula-festival — obtained directly from search_events results. It returns a complete event record: title, description, date_time, address, phone, email, website, and the full url. Not every event will have all contact fields populated; availability depends on what the event organizer has provided.

Coverage and Freshness

All events are sourced from the gohawaii.com events and festivals directory, which is maintained by the Hawaii Tourism Authority. Results are sorted by date proximity, so the first page of search_events reflects the nearest upcoming events. The island filter accepts island names as strings (e.g. Oahu, Maui, Kauai, Hawaii Island) and maps to the corresponding section of the directory.

Pagination

Both page and per_page are optional integers on search_events. Use the total and per_page values from any response to determine the full page count for a given island or all-islands query. There is no cursor-based pagination; standard page-number iteration applies.

Reliability & maintenanceVerified

The gohawaii API is a managed, monitored endpoint for gohawaii.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when gohawaii.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official gohawaii.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
1/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a Hawaii travel itinerary tool that surfaces upcoming local festivals filtered by island and date.
  • Aggregate hula, cultural, and music events by category field for a Hawaii culture guide app.
  • Display event venue addresses and contact details for a local events map using the address field from get_event_details.
  • Monitor new events added to gohawaii.com by polling search_events and comparing against a stored event list.
  • Pull event websites and email contacts to compile a directory of Hawaii festival organizers.
  • Feed event titles, dates, and cities into a calendar app covering all major Hawaiian Islands.
  • Filter events by a specific island such as Maui or Kauai to power island-specific travel recommendation features.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does gohawaii.com have an official developer API?+
No. The Hawaii Tourism Authority does not publish a public developer API for the gohawaii.com events directory.
What does the island filter on search_events accept, and what happens if I omit it?+
The island parameter is an optional string such as 'Oahu', 'Maui', 'Kauai', or 'Hawaii Island'. When omitted, search_events returns events from all islands, sorted by date proximity. The response always includes an island field on each event object so you can group or filter results client-side as well.
Are past events accessible through this API?+
The API surfaces upcoming events as listed on gohawaii.com, which organizes its directory by date proximity. Past events that have been removed from the live directory are not accessible. The API reflects the current published state of the events listing.
Does the API return event ticket purchase links or pricing information?+
Not currently. The get_event_details endpoint returns contact fields (phone, email, website) and descriptive fields (description, date_time, address), but ticket links and admission pricing are not exposed as structured fields. You can fork this API on Parse and revise it to add an endpoint that extracts ticketing details if that data appears on individual event pages.
Can I filter events by category, such as only music or only food events?+
search_events does not currently accept a category filter as an input parameter. Each event in the results does include a categories field that you can use to filter client-side after retrieval. You can fork this API on Parse and revise it to add category-based filtering as a server-side parameter.
Page content last updated . Spec covers 2 endpoints from gohawaii.com.
Related APIs in TravelSee all →
allevents.in API
Search and discover events from AllEvents.in by name, date, or category, then view detailed information like descriptions, timings, and venue details. Filter through available event categories to find exactly what you're looking for.
humanitix.com API
Search and discover events on Humanitix, viewing detailed information including dates, times, locations, descriptions, and host names. Filter by keyword, category, price, and date to find events that match your interests.
eventbrite.com API
Search Eventbrite for events by keyword, location, or category. Retrieve full event details, ticket pricing and availability, organizer profiles, and batch event data.
austintexas.org API
Search and discover community events happening in Austin, including concerts, festivals, exhibits, and family activities all in one place. Find exactly what you're looking for by browsing events from Visit Austin's official event listings.
expedia.com API
Search for hotels and flights across Expedia while viewing detailed property information to compare prices and amenities for your travel plans. Get comprehensive travel options all from one integration without manually browsing the website.
luma.com API
Search and discover public events happening in your area through Luma, complete with details about hosts, attendees, and ticket information. Browse events by location to find exactly what you're looking for and learn more about each event's specifics.
eventbrite.com.au API
Search for events and discover detailed information about upcoming shows, concerts, and gatherings on Eventbrite Australia, while exploring organiser profiles and viewing all events from a specific promoter. Get autocomplete suggestions to quickly find exactly what you're looking for across the platform.
eventup.com API
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.