search_concerts
Search upcoming concerts on Gigora by any combination of city, country, artist, genre and date range. Returns up to 50 upcoming events with venue, headliner, ticket link and a gigora.live URL.
Parameters7
| city | string | optional | |
| country | string | optional | |
| artist | string | optional | Artist name or slug (headliner). |
| genre | string | optional | |
| date_from | string | optional | Only events on/after this date. |
| date_to | string | optional | Only events on/before this date. |
| limit | integer | optional | Max results (capped at 50). |
Raw schema
{
"type": "object",
"properties": {
"city": {
"type": "string",
"maxLength": 100
},
"country": {
"type": "string",
"maxLength": 100
},
"artist": {
"description": "Artist name or slug (headliner).",
"type": "string",
"maxLength": 120
},
"genre": {
"type": "string",
"maxLength": 60
},
"date_from": {
"description": "Only events on/after this date.",
"type": "string",
"maxLength": 40
},
"date_to": {
"description": "Only events on/before this date.",
"type": "string",
"maxLength": 40
},
"limit": {
"description": "Max results (capped at 50).",
"type": "integer",
"minimum": 1,
"maximum": 50
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}