JamBase · Example Payload

Getmetros

A Metro is a collection of Cities, such as the Los Angeles area which includes LA, Hollywood, Anaheim, and more that can be used to filter Events.\ \ Returns all Metros in Alphabetical order by identifier.

ArtistsConcertsEventsFestivalsLive MusicMusicSetlistsTicketsToursVenues

Getmetros is an example object payload from JamBase, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

pathmethodoperationIdsummarydescriptionparameters

Example Payload

Raw ↑
{
  "path": "/geographies/metros",
  "method": "GET",
  "operationId": "getMetros",
  "summary": "Get Metros",
  "description": "A Metro is a collection of Cities, such as the Los Angeles area which includes LA, Hollywood, Anaheim, and more that can be used to filter Events.\\\n\\\nReturns all Metros in Alphabetical order by identifier.\n",
  "parameters": [
    {
      "name": "metroHasUpcomingEvents",
      "in": "query",
      "required": false,
      "description": "Only include Metros with / without upcoming events. Omit for both."
    },
    {
      "name": "cityHasUpcomingEvents",
      "in": "query",
      "required": false,
      "description": "Only include Cities with / without upcoming events. Omit for both."
    },
    {
      "name": "expandMetroCities",
      "in": "query",
      "required": false,
      "description": "Use `true` to include the `containsPlace` node with the cities for each metro."
    }
  ]
}