SeatGeek · Schema

SeatGeek Event

A live event in the SeatGeek platform including performers, venue, taxonomy, and ticket pricing statistics.

EventTicketsLive EventsConcertsSportsVenuesTicketing

Properties

Name Type Description
id integer Unique SeatGeek event identifier
title string Full event title
short_title string Abbreviated event title
datetime_utc string Event datetime in UTC
datetime_local string Event datetime in local venue timezone
datetime_tbd boolean Whether the exact time is still to be determined
status string Event status
type string Event type classification
score number SeatGeek popularity score
url string SeatGeek event page URL for ticket purchase
venue object
performers array Performers appearing at the event
taxonomies array Event taxonomy categories
stats object Ticket pricing statistics
View JSON Schema on GitHub

JSON Schema

seatgeek-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/seatgeek/refs/heads/main/json-schema/seatgeek-event-schema.json",
  "title": "SeatGeek Event",
  "description": "A live event in the SeatGeek platform including performers, venue, taxonomy, and ticket pricing statistics.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique SeatGeek event identifier"
    },
    "title": {
      "type": "string",
      "description": "Full event title"
    },
    "short_title": {
      "type": "string",
      "description": "Abbreviated event title"
    },
    "datetime_utc": {
      "type": "string",
      "format": "date-time",
      "description": "Event datetime in UTC"
    },
    "datetime_local": {
      "type": "string",
      "format": "date-time",
      "description": "Event datetime in local venue timezone"
    },
    "datetime_tbd": {
      "type": "boolean",
      "description": "Whether the exact time is still to be determined"
    },
    "status": {
      "type": "string",
      "description": "Event status",
      "enum": ["normal", "cancelled", "rescheduled", "contingent"]
    },
    "type": {
      "type": "string",
      "description": "Event type classification"
    },
    "score": {
      "type": "number",
      "description": "SeatGeek popularity score"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "SeatGeek event page URL for ticket purchase"
    },
    "venue": {
      "$ref": "#/$defs/Venue"
    },
    "performers": {
      "type": "array",
      "description": "Performers appearing at the event",
      "items": {
        "$ref": "#/$defs/Performer"
      }
    },
    "taxonomies": {
      "type": "array",
      "description": "Event taxonomy categories",
      "items": {
        "$ref": "#/$defs/Taxonomy"
      }
    },
    "stats": {
      "type": "object",
      "description": "Ticket pricing statistics",
      "properties": {
        "listing_count": { "type": "integer" },
        "average_price": { "type": "number" },
        "lowest_price": { "type": "number" },
        "highest_price": { "type": "number" },
        "median_price": { "type": "number" }
      }
    }
  },
  "required": ["id", "title", "datetime_utc"],
  "$defs": {
    "Venue": {
      "type": "object",
      "properties": {
        "id": { "type": "integer" },
        "name": { "type": "string" },
        "city": { "type": "string" },
        "state": { "type": "string" },
        "country": { "type": "string" },
        "address": { "type": "string" },
        "postal_code": { "type": "string" },
        "location": {
          "type": "object",
          "properties": {
            "lat": { "type": "number" },
            "lon": { "type": "number" }
          }
        }
      }
    },
    "Performer": {
      "type": "object",
      "properties": {
        "id": { "type": "integer" },
        "name": { "type": "string" },
        "slug": { "type": "string" },
        "type": { "type": "string" },
        "image": { "type": "string", "format": "uri" },
        "score": { "type": "number" }
      }
    },
    "Taxonomy": {
      "type": "object",
      "properties": {
        "id": { "type": "integer" },
        "name": { "type": "string" },
        "parent_id": { "type": "integer", "nullable": true }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/seatgeek-event"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.