cURL
curl --request POST \
--url https://api.recoupable.dev/api/research/events \
--header 'Content-Type: application/json' \
--data '
{
"artist_id": "123694f2-1dab-40b4-8a75-84d39571c0bc",
"date": "upcoming"
}
'import requests
url = "https://api.recoupable.dev/api/research/events"
payload = {
"artist_id": "123694f2-1dab-40b4-8a75-84d39571c0bc",
"date": "upcoming"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({artist_id: '123694f2-1dab-40b4-8a75-84d39571c0bc', date: 'upcoming'})
};
fetch('https://api.recoupable.dev/api/research/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.recoupable.dev/api/research/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'artist_id' => '123694f2-1dab-40b4-8a75-84d39571c0bc',
'date' => 'upcoming'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.recoupable.dev/api/research/events"
payload := strings.NewReader("{\n \"artist_id\": \"123694f2-1dab-40b4-8a75-84d39571c0bc\",\n \"date\": \"upcoming\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.recoupable.dev/api/research/events")
.header("Content-Type", "application/json")
.body("{\n \"artist_id\": \"123694f2-1dab-40b4-8a75-84d39571c0bc\",\n \"date\": \"upcoming\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.recoupable.dev/api/research/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"artist_id\": \"123694f2-1dab-40b4-8a75-84d39571c0bc\",\n \"date\": \"upcoming\"\n}"
response = http.request(request)
puts response.read_body{
"status": "success",
"events": [
{
"date": "2026-09-26",
"venue": "O2 Academy Brixton",
"city": "London",
"region": "",
"country": "United Kingdom",
"ticket_url": "<string>",
"sold_out": true,
"lineup": [
"<string>"
]
}
]
}{
"status": "error",
"error": "Missing required parameter: artist"
}{
"status": "error",
"error": "Missing required parameter: artist"
}{
"error": "insufficient_credits",
"remaining_credits": 0,
"required_credits": 5,
"checkoutUrl": "<string>",
"declineReason": "<string>"
}{
"status": "error",
"error": "Error: no bandsintown ID connected to this artist. Please connect the bandsintown ID in this format: bandsintown.com/a/{id}-{slug} Docs here: https://docs.recoupable.dev/api-reference/artists/update#body-profile-urls"
}Metrics & insights
Artist Events
List an artist’s live shows. Returns one row per event with venue, city, country, ticket link, and lineup.
POST
/
api
/
research
/
events
cURL
curl --request POST \
--url https://api.recoupable.dev/api/research/events \
--header 'Content-Type: application/json' \
--data '
{
"artist_id": "123694f2-1dab-40b4-8a75-84d39571c0bc",
"date": "upcoming"
}
'import requests
url = "https://api.recoupable.dev/api/research/events"
payload = {
"artist_id": "123694f2-1dab-40b4-8a75-84d39571c0bc",
"date": "upcoming"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({artist_id: '123694f2-1dab-40b4-8a75-84d39571c0bc', date: 'upcoming'})
};
fetch('https://api.recoupable.dev/api/research/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.recoupable.dev/api/research/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'artist_id' => '123694f2-1dab-40b4-8a75-84d39571c0bc',
'date' => 'upcoming'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.recoupable.dev/api/research/events"
payload := strings.NewReader("{\n \"artist_id\": \"123694f2-1dab-40b4-8a75-84d39571c0bc\",\n \"date\": \"upcoming\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.recoupable.dev/api/research/events")
.header("Content-Type", "application/json")
.body("{\n \"artist_id\": \"123694f2-1dab-40b4-8a75-84d39571c0bc\",\n \"date\": \"upcoming\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.recoupable.dev/api/research/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"artist_id\": \"123694f2-1dab-40b4-8a75-84d39571c0bc\",\n \"date\": \"upcoming\"\n}"
response = http.request(request)
puts response.read_body{
"status": "success",
"events": [
{
"date": "2026-09-26",
"venue": "O2 Academy Brixton",
"city": "London",
"region": "",
"country": "United Kingdom",
"ticket_url": "<string>",
"sold_out": true,
"lineup": [
"<string>"
]
}
]
}{
"status": "error",
"error": "Missing required parameter: artist"
}{
"status": "error",
"error": "Missing required parameter: artist"
}{
"error": "insufficient_credits",
"remaining_credits": 0,
"required_credits": 5,
"checkoutUrl": "<string>",
"declineReason": "<string>"
}{
"status": "error",
"error": "Error: no bandsintown ID connected to this artist. Please connect the bandsintown ID in this format: bandsintown.com/a/{id}-{slug} Docs here: https://docs.recoupable.dev/api-reference/artists/update#body-profile-urls"
}Body
application/json
Request body for artist event lookup.
Recoup artist id. Events are resolved through the live-events profile connected to this artist, so the lookup is exact and cannot drift to a same-named performer. Returns 404 if no live-events profile is connected.
Example:
"123694f2-1dab-40b4-8a75-84d39571c0bc"
Which events to return.
Available options:
upcoming, past, all Was this page helpful?
⌘I
