A Result consisting of a list of venues.
| name | data type | description |
|---|---|---|
| venue | array of venue | result list of venues |
| total | number | the total amount of items matching the query |
| page | number | the current page. starts at 1 |
| itemsPerPage | number | the amount of items you get per page |
Example
{
"venue" : [ {
"city" : {
"id" : "5357527",
"name" : "Hollywood",
"stateCode" : "CA",
"state" : "California",
"coords" : { },
"country" : { }
},
"url" : "https://www.setlist.fm/venue/compaq-center-san-jose-ca-usa-6bd6ca6e.html",
"id" : "6bd6ca6e",
"name" : "Compaq Center"
}, {
"city" : {
"id" : "...",
"name" : "...",
"stateCode" : "...",
"state" : "...",
"coords" : { },
"country" : { }
},
"url" : "...",
"id" : "...",
"name" : "..."
} ],
"total" : 42,
"page" : 1,
"itemsPerPage" : 20
}