curl --request GET \
--url https://api-alpha.fourvenues.com/resellers/v2/events \
--header 'Authorization: <api-key>'import requests
url = "https://api-alpha.fourvenues.com/resellers/v2/events"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api-alpha.fourvenues.com/resellers/v2/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-alpha.fourvenues.com/resellers/v2/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-alpha.fourvenues.com/resellers/v2/events"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-alpha.fourvenues.com/resellers/v2/events")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-alpha.fourvenues.com/resellers/v2/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"_id": "abcdefghijk1234567890",
"name": "Saturdays at Ginger Klub",
"description": "Resident DJs every Saturday night.",
"display_date": "2026-10-03T22:00:00.000Z",
"start_date": "2026-10-03T22:00:00.000Z",
"end_date": "2026-10-04T05:30:00.000Z",
"currency": "EUR",
"image_url": "https://cdn.fourvenues.com/ginger-klub/saturdays.jpg",
"organization_id": "abcdefghijk1234567890",
"location": {
"name": "Ginger Klub",
"address": "Carrer de Balmes 23",
"full_address": "Carrer de Balmes 23, 08007 Barcelona, Spain",
"city": "Barcelona",
"country": "ES",
"timezone": "Europe/Madrid"
}
}
],
"has_more": true,
"success": true
}{
"success": false,
"error": "VALIDATION_ERROR"
}{
"valid": false,
"swappable": false,
"error": "UNAUTHORIZED"
}{
"success": false,
"error": "ORGANIZATION_NOT_ALLOWED"
}{
"success": false,
"error": "INTERNAL_ERROR"
}List reseller events
Lists the sellable events of the organizations the API key covers: active, visible, not cancelled, not private and not yet ended. Ordered by start date, ascending.
curl --request GET \
--url https://api-alpha.fourvenues.com/resellers/v2/events \
--header 'Authorization: <api-key>'import requests
url = "https://api-alpha.fourvenues.com/resellers/v2/events"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api-alpha.fourvenues.com/resellers/v2/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-alpha.fourvenues.com/resellers/v2/events",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-alpha.fourvenues.com/resellers/v2/events"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-alpha.fourvenues.com/resellers/v2/events")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-alpha.fourvenues.com/resellers/v2/events")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"_id": "abcdefghijk1234567890",
"name": "Saturdays at Ginger Klub",
"description": "Resident DJs every Saturday night.",
"display_date": "2026-10-03T22:00:00.000Z",
"start_date": "2026-10-03T22:00:00.000Z",
"end_date": "2026-10-04T05:30:00.000Z",
"currency": "EUR",
"image_url": "https://cdn.fourvenues.com/ginger-klub/saturdays.jpg",
"organization_id": "abcdefghijk1234567890",
"location": {
"name": "Ginger Klub",
"address": "Carrer de Balmes 23",
"full_address": "Carrer de Balmes 23, 08007 Barcelona, Spain",
"city": "Barcelona",
"country": "ES",
"timezone": "Europe/Madrid"
}
}
],
"has_more": true,
"success": true
}{
"success": false,
"error": "VALIDATION_ERROR"
}{
"valid": false,
"swappable": false,
"error": "UNAUTHORIZED"
}{
"success": false,
"error": "ORGANIZATION_NOT_ALLOWED"
}{
"success": false,
"error": "INTERNAL_ERROR"
}Authorizations
Reseller API key, sent raw in the Authorization header: Authorization: rs_live_xxxxxxxxxxxxxxxx. Keys prefixed rs_test_ operate against the test environment. The same key serves v2 and the swap operations, and it only reaches the organizations Fourvenues authorized on it.
Query Parameters
Page size.
1 <= x <= 100Number of items skipped before the page.
x >= 0Comma-separated organization ids to narrow the listing to. Every id must be covered by the API key, or the request is rejected with ORGANIZATION_NOT_ALLOWED. Omit it to list every organization the key covers.
Lower bound on when the event starts. Either a bare date, read as midnight UTC, or an ISO 8601 date-time carrying its own zone (2026-10-01T20:00:00+02:00). A date-time without a zone is rejected. Asking for October returns the events that begin in October, including those ending at dawn the next day; a season pass that started last year stays out.
Upper bound on when the event starts, same format as starts_after. Events that already ended stay out of the listing regardless of this window.