Discover/Humanitix API
live

Humanitix APIhumanitix.com

Search Humanitix events by city, category, date, and price. Retrieve full event details including venue, description, host bio, and image via 2 endpoints.

Endpoint health
verified 4d ago
search_events
get_event_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Humanitix API?

The Humanitix API provides 2 endpoints to search and retrieve event data from Humanitix, one of Australia's largest ticketing platforms. The search_events endpoint returns paginated event summaries — up to 32 per page — filtered by Australian city, category, date range, and price type. The get_event_details endpoint delivers the full event record including venue address, rich-text description, host biography, canonical URL, and hero image for any event slug returned by search.

Try it
Page number (0-indexed).
Date filter. Accepted values: all, today, thisweek, thisweekend, nextweek.
Maximum number of events to return per request.
Price filter. Accepted values: all, free, paid.
Search keyword for events.
Event category filter. Accepted values: all, music, foodAndDrink, sports, arts.
Australian city name. Accepted values: sydney, melbourne, brisbane, adelaide, perth, canberra, hobart, darwin.
api.parse.bot/scraper/c0a44fe8-8642-4547-9058-27403e62ec34/<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 GET 'https://api.parse.bot/scraper/c0a44fe8-8642-4547-9058-27403e62ec34/search_events?page=0&dates=all&limit=32&price=all&query=music&category=all&location=sydney' \
  -H 'X-API-Key: $PARSE_API_KEY'
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 humanitix-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.

from parse_apis.humanitix_events_api import Humanitix, EventSummary, Event, Location, Category, DateFilter, PriceFilter

client = Humanitix()

# Search for music events in Melbourne
for event in client.eventsummaries.search(
    query="music",
    location=Location.MELBOURNE,
    category=Category.MUSIC,
    dates=DateFilter.THIS_WEEK,
    price=PriceFilter.ALL,
    limit=5,
):
    print(event.event_name, event.date, event.location, event.price)

    # Get full details for an event
    details = event.details()
    print(details.event_name, details.description, details.host_about, details.image_url)
All endpoints · 2 totalmissing one? ·

Full-text search over Humanitix events in Australian cities. Filters by category, date range, and price type. Returns paginated event summaries with name, date, location, host, pricing, and slug for drill-down. Each page returns up to 32 events; advance via the page param.

Input
ParamTypeDescription
pageintegerPage number (0-indexed).
datesstringDate filter. Accepted values: all, today, thisweek, thisweekend, nextweek.
limitintegerMaximum number of events to return per request.
pricestringPrice filter. Accepted values: all, free, paid.
querystringSearch keyword for events.
categorystringEvent category filter. Accepted values: all, music, foodAndDrink, sports, arts.
locationstringAustralian city name. Accepted values: sydney, melbourne, brisbane, adelaide, perth, canberra, hobart, darwin.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "query": "string, the search query used",
    "events": "array of event summary objects",
    "location": "string, the location filter used",
    "total_returned": "integer, number of events returned in this response"
  },
  "sample": {
    "data": {
      "page": 0,
      "query": "music",
      "events": [
        {
          "date": "Fri Oct 23 2026 08:00:00 GMT+0000 (Coordinated Universal Time)",
          "slug": "bitd2025-accord-fri",
          "price": "$49",
          "end_date": "Fri Oct 23 2026 09:15:00 GMT+0000 (Coordinated Universal Time)",
          "location": "St. James Church Crypt, 173 King St, Sydney NSW 2000, Australia",
          "timezone": "Australia/Sydney",
          "event_url": "https://events.humanitix.com/bitd2025-accord-fri",
          "host_name": "Bach in the Dark",
          "event_name": "Bach in the Dark - music for cello and accordion",
          "description": "",
          "is_recurring": false
        }
      ],
      "location": "sydney",
      "total_returned": 3
    },
    "status": "success"
  }
}

About the Humanitix API

Searching Events

The search_events endpoint accepts a free-text query alongside structured filters: location (one of eight Australian cities including sydney, melbourne, and brisbane), category (music, foodAndDrink, sports, or arts), dates (today, thisweek, thisweekend, nextweek, or all), and price (free or paid). Results are paginated — each response includes page, total_returned, and an events array of summary objects carrying the event name, date, location, host, pricing indicators, and the slug field used for drill-down. Use the page param (0-indexed) to advance through result sets.

Event Detail Records

Passing any slug from search_events to get_event_details returns a single-event object with eight fields: event_name, human-readable date, location (venue name and street address), description (full rich-text body), host_about (organiser biography), event_url (canonical Humanitix link), image_url (hero image), and the slug itself. This makes it straightforward to build event listings that show structured venue data and organiser context alongside the formatted date string.

Coverage and Scope

Coverage is limited to events listed on the Australian Humanitix platform (humanitix.com/au). All eight city filters correspond to Australian capitals. Category filtering supports four values: music, foodAndDrink, sports, and arts. Events without a matching slug in the search response cannot be retrieved via get_event_details; the slug is the only lookup key the detail endpoint accepts.

Reliability & maintenanceVerified

The Humanitix API is a managed, monitored endpoint for humanitix.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when humanitix.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 humanitix.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
4d ago
Latest check
2/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 city-specific event guide aggregating Humanitix listings filtered by location and category
  • Generate a weekly email digest of free events in a target Australian city using the price=free and dates=thisweek filters
  • Populate a calendar app with structured venue addresses and human-readable dates from get_event_details
  • Monitor new music or arts events in multiple cities by querying search_events with category and dates filters
  • Display host biographies alongside event descriptions for editorial event-discovery content
  • Compare event volume across Australian cities by paginating search_events results per location
  • Enrich an existing ticketing dataset with hero images and canonical URLs via the image_url and event_url fields
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 Humanitix have an official developer API?+
Yes. Humanitix provides an official API for event organisers and partners, documented at https://humanitix.com/au/api. That API is aimed at organisations managing their own events. The Parse API focuses on discovery — searching public event listings and retrieving event details regardless of organiser relationship.
What does search_events return for each event in the results array?+
Each object in the events array includes the event name, date, location, host, pricing information, and a slug. The slug is the key input for get_event_details; without it you cannot fetch the full record. The response also reports the current page number and total_returned count so you can determine whether additional pages exist.
Is the location filter limited to Australian cities?+
Yes. The location parameter accepts only eight Australian capital city values: sydney, melbourne, brisbane, adelaide, perth, canberra, hobart, and darwin. Humanitix operates in other regions, but this API currently covers the Australian platform only. You can fork the API on Parse and revise it to target other Humanitix regional domains if your use case requires international coverage.
Does the API return ticket availability or remaining ticket counts?+
Not currently. The API returns pricing type (free or paid) via the search_events price filter and pricing summaries in event objects, but specific ticket inventory levels or availability counts are not included in either endpoint's response fields. You can fork the API on Parse and revise it to add an endpoint targeting ticket availability data if that detail is exposed on individual event pages.
How does pagination work in search_events?+
Results are returned in pages of up to 32 events. The page parameter is 0-indexed, so page=0 returns the first set of results. Each response includes total_returned showing how many events came back in that call. To walk through all results, increment page until total_returned is less than the page size or the events array is empty.
Page content last updated . Spec covers 2 endpoints from humanitix.com.
Related APIs in EntertainmentSee all →
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.
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.
shop.ticketera.com API
Search for events on Ticketera, retrieve detailed event information including pricing and ticket categories, and check real-time seat availability for any performance. Ideal for browsing upcoming shows, comparing ticket options, and finding open seats before purchasing.
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.
10times.com API
Search and discover events from 10times.com, including conferences, trade shows, and exhibitions worldwide. Access detailed event data such as exhibitor lists, schedules, agendas, and venue information.
kktix.com API
Search and discover events on KKTIX by category or filters, view detailed event information including tickets and organizer details, and browse featured events and their availability. Access comprehensive event metadata to find exactly what you're looking for across different categories and organizers.
etix.com API
Search for live events across venues and categories, discover what's playing today or this weekend, and check real-time ticket availability for concerts, shows, and other ticketed events. Get detailed event information and browse featured homepage listings to find and book tickets for your next outing.
seatgeek.com API
Search for events and performers, view ticket listings with pricing data, and explore venue information across multiple event categories. Get real-time insights into event details, ticket price trends, and what's currently trending to help you find and compare tickets.