Discover/humanitix.com API
live

humanitix.com APIhumanitix.com

Search Humanitix events by keyword, location, category, and price. Retrieve full event details including dates, venue, host info, and images via 2 endpoints.

Endpoints
2
Updated
3mo ago
Try it
Page number (0-indexed).
Date filter. Accepted values: today, thisweek, thisweekend, nextweek, or empty string for
Maximum number of events to return.
Price filter. Accepted values: all, free, paid.
Search keyword for events.
Event category filter. Accepted values: music, foodAndDrink, sports, arts, or empty string
Australian city name. Accepted values: sydney, melbourne, brisbane, adelaide, perth, canbe
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.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c0a44fe8-8642-4547-9058-27403e62ec34/search_events?limit=2&query=music&location=brisbane' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Search for events on Humanitix by keyword, location, and filters. Returns paginated results with event name, date, location, host name, pricing, and event URL.

Input
ParamTypeDescription
pageintegerPage number (0-indexed).
datesstringDate filter. Accepted values: today, thisweek, thisweekend, nextweek, or empty string for all dates.
limitintegerMaximum number of events to return.
pricestringPrice filter. Accepted values: all, free, paid.
querystringSearch keyword for events.
categorystringEvent category filter. Accepted values: music, foodAndDrink, sports, arts, or empty string for all categories.
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 objects with event_name, date, end_date, location, host_name, description, price, slug, event_url, timezone, is_recurring",
    "location": "string, the location filter used",
    "total_returned": "integer, number of events returned in this response"
  },
  "sample": {
    "data": {
      "page": 0,
      "query": "music",
      "events": [
        {
          "date": "Sun Nov 09 2025 13:00:00 GMT+0000 (Coordinated Universal Time)",
          "slug": "music-at-mcclelland-2026-subscription-tickets",
          "price": "$220 - $440",
          "end_date": "Sun Nov 15 2026 12:00:00 GMT+0000 (Coordinated Universal Time)",
          "location": "McClelland, 390 McClelland Dr, Langwarrin VIC 3910, Australia",
          "timezone": "Australia/Melbourne",
          "event_url": "https://events.humanitix.com/music-at-mcclelland-2026-subscription-tickets",
          "host_name": "Events at McClelland",
          "event_name": "Music at McClelland - 2026 Subscription tickets",
          "description": "",
          "is_recurring": false
        }
      ],
      "location": "melbourne",
      "total_returned": 3
    },
    "status": "success"
  }
}

About the humanitix.com API

The Humanitix API gives developers access to event discovery and detail data across Australia through 2 endpoints. search_events returns paginated results filtered by keyword, city, category, date range, and price tier, while get_event_details returns full event metadata including description, host background, venue address, and image URL for any event identified by its slug.

Search and Filter Events

The search_events endpoint accepts up to seven parameters. The query field narrows results by keyword, location restricts to one of eight Australian cities (sydney, melbourne, brisbane, adelaide, perth, canberra, hobart, darwin), and category filters to music, foodAndDrink, sports, or arts. The dates parameter accepts today, thisweek, thisweekend, or nextweek; passing an empty string returns all upcoming events. The price parameter accepts all, free, or paid. Results are paginated with 0-indexed page and a configurable limit. Each event object in the response includes event_name, date, end_date, location, host_name, description, price, slug, event_url, timezone, and is_rec.

Full Event Details

get_event_details takes a single required parameter — the slug from a search_events result — and returns a richer record. Fields include the full description, image_url, host_about (a narrative about the organiser), location with venue name and address, event_url, and the human-readable date string. This endpoint is the right choice when you need complete organiser context or a banner image for display.

Coverage and Scope

All location filtering is limited to Australian cities. The search_events response includes total_returned so callers can determine whether additional pages exist. The is_rec field on each event indicates whether the result is a recommended listing, which can be useful for ranking or deduplication in downstream applications.

Common use cases
  • Build a local event calendar filtered by Australian city and date range using search_events location and dates params
  • Aggregate free community events by combining price: free and category filters from search_events
  • Display event banner images in a mobile app using image_url from get_event_details
  • Surface organiser background to users by pulling host_about from get_event_details
  • Generate event recommendation feeds by filtering on is_rec in search_events results
  • Compare music and arts event density across cities by running search_events with different location and category values
  • Pre-populate event detail pages by chaining search_events slugs into get_event_details calls
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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?+
Humanitix provides an official API for event organisers to manage ticket sales and attendee data, documented at https://humanitix.com/au/developer. That API targets organisers with authenticated access. The Parse Humanitix API covers public event discovery and detail data without requiring organiser credentials.
What does `get_event_details` return beyond what `search_events` already includes?+
get_event_details adds image_url, host_about, and a more complete description field. The search_events response includes a description field but it may be truncated; get_event_details returns the full text along with the canonical event_url and a human-readable date string formatted for display.
Is event data available outside Australia?+
The location parameter in search_events only accepts Australian city names, so geographic filtering is limited to Australia. Humanitix does operate in other markets. You can fork this API on Parse and revise it to add support for non-Australian locations if the underlying data is available.
Does the API return ticket purchase links or seat availability?+
Not currently. The API returns event_url, price, and event metadata, but does not expose ticket inventory counts, remaining seat availability, or direct purchase endpoints. You can fork it on Parse and revise it to add an endpoint covering ticket tier details if that data is accessible on the event page.
How does pagination work in `search_events`?+
The page parameter is 0-indexed, so the first page is page=0. The response includes total_returned, which reflects the count of events in the current response rather than the total across all pages. Use limit together with page to step through results, and stop paginating when total_returned is less than your limit value.
Page content last updated . Spec covers 2 endpoints from humanitix.com.
Related APIs in EntertainmentSee all →
noor-book.com API
Search and discover books across 1,800+ categories in the Noor Book library, retrieving detailed information about titles, authors, biographies, and book metadata. Access comprehensive author profiles and browse one of the largest Arabic and English digital book collections with over 289,000 authors.
vg.no API
Access VG.no's latest news, articles, sports scores, and TV guides through a single interface where you can browse the front page, search articles by topic, view category-specific content, and find related stories. Get real-time sports scores and television schedules alongside comprehensive news coverage from Norway's leading news outlet.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
novelbin.me API
Search and browse novels by title, genre, or popularity, and explore trending, completed, or recently updated works. Access full novel details, chapter listings, chapter content, author information, related titles, and reader comments. Authenticated users can manage bookmarks with reading-status tracking and subscribe to novels for update notifications.
quizbowlpackets.com API
Search and browse thousands of quizbowl question sets across all competition levels, then access detailed metadata like difficulty, subjects, and download links for each packet. Find the perfect practice materials for High School, Collegiate, Middle School, or Pop Culture quizbowl competitions.
glastonburyfestivals.co.uk API
Discover historical and current Glastonbury Festival line-ups, find artist set times and stage locations, and search for specific performers across all festival years. Stay updated with the latest festival news and explore detailed information about festival areas and stages.
puntoticket.com API
Browse and search events happening in Chile with PuntoTicket, viewing featured shows, filtering by category, and checking detailed pricing and availability for concerts, theater, sports, and more. Find the perfect event by exploring all listings or discovering what's trending right now.
wynncraft.com API
Access detailed Wynncraft game information to look up item metadata and search across the complete item database, retrieve player statistics and character inventories, and browse guild information and global search results. Use this data to compare gear, track player progress, analyze guild rosters, or build tools for the Wynncraft community.