Search for upcoming concerts
Search for upcoming concerts. Supports city, date range, genre, and artist filtering.
10000 (raw units)
price
6
calls / 30d
4
unique payers
2026-09-14
updated
Provider
x402-tools.vercel.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xbAd1Aa224bFe4fEb460E12b2553DcDf98a7098d0",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"countryCode": "US",
"page": "0"
},
"type": "http"
},
"output": {
"example": [
{
"artists": [
"Khruangbin",
"Bob Moses"
],
"city": "Boston",
"date": "2026-04-15",
"name": "Khruangbin - A La Sala Tour",
"priceRange": {
"max": 150,
"min": 55
},
"time": "20:00:00",
"url": "https://example.com/event/abc123",
"venue": "Paradise Rock Club"
}
],
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"artists": {
"description": "Comma-separated artist names to filter by (e.g. Khruangbin,Bob Moses)",
"type": "string"
},
"city": {
"description": "City name (e.g. Boston, New York)",
"type": "string"
},
"countryCode": {
"description": "Country code filter (default US)",
"type": "string"
},
"endDateTime": {
"description": "End of date range in ISO 8601 (e.g. 2026-03-31T23:59:59Z)",
"type": "string"
},
"genre": {
"description": "Music genre. One of: Alternative, Ballads/Romantic, Blues, Classical, Country, Dance/Electronic, Folk, Hip-Hop/Rap, Jazz, Latin, Metal, Pop, R&B, Reggae, Rock, World.",
"type": "string"
},
"page": {
"description": "Page number for pagination (default 0)",
"type": "string"
},
"startDateTime": {
"description": "Start of date range in ISO 8601 (e.g. 2026-03-01T00:00:00Z)",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"items": {
"properties": {
"artists": {
"description": "Performer/artist names",
"items": {
"type": "string"
},
"type": "array"
},
"city": {
"description": "City name",
"nullable": true,
"type": "string"
},
"date": {
"description": "Local date (YYYY-MM-DD)",
"type": "string"
},
"name": {
"description": "Concert/event name",
"type": "string"
},
"priceRange": {
"description": "Ticket price range or null if unavailable",
"nullable": true,
"properties": {
"max": {
"description": "Maximum ticket price (USD)",
"type": "number"
},
"min": {
"description": "Minimum ticket price (USD)",
"type": "number"
}
},
"type": "object"
},
"time": {
"description": "Local time (HH:MM:SS) or null",
"nullable": true,
"type": "string"
},
"url": {
"description": "Event URL",
"nullable": true,
"type": "string"
},
"venue": {
"description": "Venue name",
"nullable": true,
"type": "string"
}
},
"required": [
"name",
"date",
"artists"
],
"type": "object"
},
"type": "array"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-tools.vercel.app/api/concerts" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402-tools.vercel.app/api/concerts");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402-tools.vercel.app/api/concerts")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/13269.json, and this resource appears in /discovery/resources and /discovery/search.