Ticketmaster · Schema
Ticketmaster Event
Schema for a Ticketmaster live event as returned by the Discovery API v2.
CommerceConcertsEntertainmentEventSportsTicketsVenues
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique Ticketmaster event identifier |
| name | string | Event name |
| type | string | Resource type (always 'event') |
| url | string | Ticketmaster purchase URL for the event |
| locale | string | Locale for the event content (e.g., en-us) |
| images | array | Event images in various aspect ratios and resolutions |
| dates | object | |
| classifications | array | |
| priceRanges | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/ticketmaster/main/json-schema/ticketmaster-event-schema.json",
"title": "Ticketmaster Event",
"description": "Schema for a Ticketmaster live event as returned by the Discovery API v2.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique Ticketmaster event identifier"
},
"name": {
"type": "string",
"description": "Event name"
},
"type": {
"type": "string",
"description": "Resource type (always 'event')"
},
"url": {
"type": "string",
"format": "uri",
"description": "Ticketmaster purchase URL for the event"
},
"locale": {
"type": "string",
"description": "Locale for the event content (e.g., en-us)"
},
"images": {
"type": "array",
"items": {
"$ref": "#/$defs/Image"
},
"description": "Event images in various aspect ratios and resolutions"
},
"dates": {
"$ref": "#/$defs/EventDates"
},
"classifications": {
"type": "array",
"items": {
"$ref": "#/$defs/Classification"
}
},
"priceRanges": {
"type": "array",
"items": {
"$ref": "#/$defs/PriceRange"
}
}
},
"required": ["id", "name"],
"$defs": {
"Image": {
"type": "object",
"properties": {
"ratio": {"type": "string", "enum": ["16_9", "3_2", "4_3"]},
"url": {"type": "string", "format": "uri"},
"width": {"type": "integer"},
"height": {"type": "integer"},
"fallback": {"type": "boolean"}
}
},
"EventDates": {
"type": "object",
"properties": {
"start": {
"type": "object",
"properties": {
"localDate": {"type": "string", "format": "date"},
"localTime": {"type": "string"},
"dateTime": {"type": "string", "format": "date-time"},
"dateTBD": {"type": "boolean"},
"timeTBD": {"type": "boolean"}
}
},
"status": {
"type": "object",
"properties": {
"code": {
"type": "string",
"enum": ["onsale", "offsale", "cancelled", "postponed", "rescheduled"]
}
}
},
"timezone": {"type": "string"}
}
},
"Classification": {
"type": "object",
"properties": {
"primary": {"type": "boolean"},
"segment": {"$ref": "#/$defs/ClassificationEntity"},
"genre": {"$ref": "#/$defs/ClassificationEntity"},
"subGenre": {"$ref": "#/$defs/ClassificationEntity"}
}
},
"ClassificationEntity": {
"type": "object",
"properties": {
"id": {"type": "string"},
"name": {"type": "string"}
}
},
"PriceRange": {
"type": "object",
"properties": {
"type": {"type": "string"},
"currency": {"type": "string"},
"min": {"type": "number"},
"max": {"type": "number"}
}
}
}
}
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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/ticketmaster-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.