{
  "openapi": "3.0.1",
  "info": {
    "title": "Cheapest Ticketmaster Scraper",
    "description": "Scrape Ticketmaster events, venues and artists at the lowest price per result — plus live ticket prices and real seat availability. Pay per result — no start fee, no subscription.",
    "version": "0.1",
    "x-build-id": "lHdzU2N6bIROBqCSv"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/serp.cheap.ofc~cheapest-ticketmaster-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-serp.cheap.ofc-cheapest-ticketmaster-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/serp.cheap.ofc~cheapest-ticketmaster-scraper/runs": {
      "post": {
        "operationId": "runs-sync-serp.cheap.ofc-cheapest-ticketmaster-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/serp.cheap.ofc~cheapest-ticketmaster-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-serp.cheap.ofc-cheapest-ticketmaster-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "search",
              "venue",
              "artist",
              "discover",
              "event",
              "selftest"
            ],
            "type": "string",
            "description": "What to scrape. \"search\" lists events matching a keyword; \"venue\"/\"artist\" list a venue's or artist's upcoming events; \"discover\" lists events in a city; \"event\" reads LIVE ticket prices and real seat availability for each event; \"selftest\" checks that everything still works (for monitoring).",
            "default": "search"
          },
          "term": {
            "title": "Search keyword",
            "type": "string",
            "description": "Keyword to search for — an artist, team, show or event name (e.g. \"Taylor Swift\", \"Lakers\", \"Hamilton\"). Used only in \"search\" mode."
          },
          "venueUrls": {
            "title": "Venue URLs or IDs",
            "type": "array",
            "description": "Venues to list upcoming events for. Accepts Ticketmaster venue URLs (https://www.ticketmaster.com/<slug>/venue/<id>) or bare venue IDs. Used only in \"venue\" mode.",
            "items": {
              "type": "string"
            }
          },
          "artistUrls": {
            "title": "Artist URLs or IDs",
            "type": "array",
            "description": "Artists/attractions to list upcoming events for. Accepts Ticketmaster artist URLs (https://www.ticketmaster.com/<slug>/artist/<id>) or bare artist IDs. Used only in \"artist\" mode.",
            "items": {
              "type": "string"
            }
          },
          "cities": {
            "title": "Cities",
            "type": "array",
            "description": "Cities to discover events in. Accepts a bare city slug (e.g. \"new-york\", \"los-angeles\") — the \"concerts\" category is used by default. To pick another category, pass \"<category>/<city>\" (e.g. \"sports/new-york\", \"arts-theater/chicago\"), or a full Ticketmaster discover URL (https://www.ticketmaster.com/discover/<category>/<city>). Used only in \"discover\" mode.",
            "items": {
              "type": "string"
            }
          },
          "eventUrls": {
            "title": "Event URLs or IDs",
            "type": "array",
            "description": "Events to read LIVE prices and seat availability for. Accepts Ticketmaster event URLs (https://www.ticketmaster.com/event/<ID>) or bare event IDs. Used only in \"event\" mode. ⚠️ REQUIRES a RESIDENTIAL proxy. Set Proxy configuration below to RESIDENTIAL (or supply your own residential proxy). Runs that get blocked are NOT charged.",
            "items": {
              "type": "string"
            }
          },
          "includeSeatMap": {
            "title": "Include seat map (auditorium map)",
            "type": "boolean",
            "description": "In \"event\" mode, also capture the venue's auditorium map: every section as a polygon on the seating chart, with per-section availability joined in, plus the seat-map image URL. Adds the \"seat-map\" charge per event. ⚠️ Also requires a RESIDENTIAL proxy.",
            "default": false
          },
          "seatLevel": {
            "title": "Seat-level coordinates",
            "type": "boolean",
            "description": "When \"Include seat map\" is on, also extract every individual seat (row, label and x/y coordinates) inside each section. Produces large output for big arenas. No extra charge beyond \"seat-map\".",
            "default": false
          },
          "maxItems": {
            "title": "Max items",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of results to scrape across the whole run (events in search/discovery modes, pages in venue/artist, events in event mode).",
            "default": 100
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "The default Apify proxy works for discovery (search/venue/artist/discover) — leave this empty. ⚠️ The \"event\" (live prices + seats) mode REQUIRES a RESIDENTIAL proxy: set this to Apify Proxy → RESIDENTIAL, or supply your own residential proxy URLs."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}