{
  "info": {
    "name": "Ticketmaster — mcp.ai",
    "description": "REST API for the Ticketmaster MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/ticketmaster",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "ticketmaster_get_attraction_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/attraction/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "attraction",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific attraction by id. use when you have an attraction id and need full details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"locale\": \"\",\n  \"include\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ticketmaster_get_attractions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/attractions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "attractions"
          ]
        },
        "description": "Tool to retrieve a list of attractions. use when you need to search for artists, teams, or performers by various criteria such as keyword, classification, or country.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"size\": 0,\n  \"sort\": \"\",\n  \"type\": \"\",\n  \"source\": \"\",\n  \"genreId\": \"\",\n  \"keyword\": \"\",\n  \"segmentId\": \"\",\n  \"subGenreId\": \"\",\n  \"countryCode\": \"\",\n  \"includeTest\": false,\n  \"attractionId\": \"\",\n  \"subSegmentId\": \"\",\n  \"classificationName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ticketmaster_get_classification_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/classification/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "classification",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific classification. use after obtaining a classification id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ticketmaster_get_classifications",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/classifications",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "classifications"
          ]
        },
        "description": "Tool to retrieve all event classifications. use when categorizing events before searching.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"locale\": \"\",\n  \"countryCode\": \"\",\n  \"classificationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ticketmaster_get_event_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/event/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "event",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific event by id. use when you have an event's unique identifier and need its full details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ticketmaster_get_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "events"
          ]
        },
        "description": "Tool to retrieve a list of events matching specified filters. use when you need to search events by keyword, location, date range, or classification.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"page\": 0,\n  \"size\": 0,\n  \"sort\": \"\",\n  \"unit\": \"\",\n  \"dmaId\": \"\",\n  \"locale\": \"\",\n  \"radius\": 0,\n  \"keyword\": \"\",\n  \"latlong\": \"\",\n  \"venueId\": \"\",\n  \"stateCode\": \"\",\n  \"postalCode\": \"\",\n  \"countryCode\": \"\",\n  \"endDateTime\": \"\",\n  \"attractionId\": \"\",\n  \"startDateTime\": \"\",\n  \"includeSpellcheck\": false,\n  \"classificationName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ticketmaster_get_genre_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/genre/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "genre",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific genre. use when you need metadata for a single genre before filtering events by genre.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ticketmaster_get_segment_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/segment/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "segment",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific segment. use after obtaining a segment id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ticketmaster_get_subgenre_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/subgenre/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "subgenre",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific subgenre. use when you have a subgenre id and need its details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"locale\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ticketmaster_get_suggestions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/suggestions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "suggestions"
          ]
        },
        "description": "Tool to retrieve auto-complete suggestions for search queries. use when you have a partial keyword and want to get matching attractions, venues, or events.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"keyword\": \"\",\n  \"countryCode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ticketmaster_get_venue_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/venue/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "venue",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific venue by id. use when you have a venue's unique identifier and need its full details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "ticketmaster_get_venues",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/venues",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "venues"
          ]
        },
        "description": "Tool to retrieve a list of venues based on specified criteria. use when you need venue details by name, location, or id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"city\": \"\",\n  \"page\": 0,\n  \"size\": 0,\n  \"sort\": \"\",\n  \"dmaId\": \"\",\n  \"radius\": 0,\n  \"keyword\": \"\",\n  \"latlong\": \"\",\n  \"stateCode\": \"\",\n  \"postalCode\": \"\",\n  \"countryCode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}