LONG Events events API
LONG Events events API: global electronic-music event discovery with structured artists. Actions: discover, list, stats, catalog_stats, spotlight_candidates, get_sets, get_now_playing, get_schedule, search_artists, get_artist, get_artist_events, list_artists. Artist-action identity objects include nullable mbid and cross-provider-verified spotify_id; artist event payloads include the resolved closest-to-purchase ticket_url.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://long.events/functions/v1/api-events
| Category | Everything else |
|---|---|
| Provider host | long.events |
| Networks | eip155:56, eip155:8453 |
| Payment schemes | exact, long-events-stable-txhash, long-events-txhash |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"action": "get_artist_events",
"limit": "20",
"name": "Overmono",
"upcoming_only": "true"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}