Retrieve details for a specific public tour
curl --request GET \
--url https://public-api.tixyapp.com/tour \
--header 'Authorization: Bearer <token>'import requests
url = "https://public-api.tixyapp.com/tour"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://public-api.tixyapp.com/tour', 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://public-api.tixyapp.com/tour",
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: Bearer <token>"
],
]);
$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://public-api.tixyapp.com/tour"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://public-api.tixyapp.com/tour")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.tixyapp.com/tour")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"events": [
{
"social": {
"links": [
"<string>"
]
},
"tickets": {
"isTicketResselingEnabled": true,
"tickets": [
{
"name": "<string>",
"description": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ticketPools": [
{
"salesDates": {
"start": "<string>",
"hasEndDate": true,
"end": "<string>",
"hasStartDate": true
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"salesActive": true,
"price": "<string>"
}
],
"isSinglePoolTicket": true,
"shouldDisplayTicketName": true
}
]
},
"dates": {
"scanning": {
"start": "2023-11-07T05:31:56Z",
"end": "2023-11-07T05:31:56Z"
},
"end": "2023-11-07T05:31:56Z",
"openings": [
{
"date": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
},
"status": "<string>",
"types": [
"<string>"
],
"visibility": "<string>",
"allowResale": true,
"name": "<string>",
"artistsDetails": "<string>",
"publishTime": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"slug": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"category": "<string>",
"restrictions": {
"ageLimit": "<string>"
},
"description": "<string>"
}
],
"description": "<string>",
"status": "<string>"
}{
"message": "<string>",
"code": "<string>"
}{
"message": "<string>",
"code": "<string>"
}{
"message": "<string>",
"code": "<string>"
}Public API Reference
Retrieve details for a specific public tour
Fetches the details for a specific public tour identified by its unique identifier or slug.
GET
/
tour
Retrieve details for a specific public tour
curl --request GET \
--url https://public-api.tixyapp.com/tour \
--header 'Authorization: Bearer <token>'import requests
url = "https://public-api.tixyapp.com/tour"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://public-api.tixyapp.com/tour', 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://public-api.tixyapp.com/tour",
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: Bearer <token>"
],
]);
$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://public-api.tixyapp.com/tour"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://public-api.tixyapp.com/tour")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.tixyapp.com/tour")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "<string>",
"name": "<string>",
"events": [
{
"social": {
"links": [
"<string>"
]
},
"tickets": {
"isTicketResselingEnabled": true,
"tickets": [
{
"name": "<string>",
"description": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"ticketPools": [
{
"salesDates": {
"start": "<string>",
"hasEndDate": true,
"end": "<string>",
"hasStartDate": true
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"salesActive": true,
"price": "<string>"
}
],
"isSinglePoolTicket": true,
"shouldDisplayTicketName": true
}
]
},
"dates": {
"scanning": {
"start": "2023-11-07T05:31:56Z",
"end": "2023-11-07T05:31:56Z"
},
"end": "2023-11-07T05:31:56Z",
"openings": [
{
"date": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
},
"status": "<string>",
"types": [
"<string>"
],
"visibility": "<string>",
"allowResale": true,
"name": "<string>",
"artistsDetails": "<string>",
"publishTime": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"slug": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"category": "<string>",
"restrictions": {
"ageLimit": "<string>"
},
"description": "<string>"
}
],
"description": "<string>",
"status": "<string>"
}{
"message": "<string>",
"code": "<string>"
}{
"message": "<string>",
"code": "<string>"
}{
"message": "<string>",
"code": "<string>"
}Authorizations
Custom Bearer token authentication for accessing public organizer endpoints.
Query Parameters
The unique identifier for the tour. Must be a 24-character hexadecimal string.
Pattern:
^[a-f0-9]{24}$Example:
"550e8400-e29b-41d4-a716-446655440000"
The SEO-friendly slug for the tour. Accepts alphanumeric characters, hyphens, underscores, and periods.
Pattern:
^[a-zA-Z0-9-_\\.]+$Example:
"example-tour"
Response
Successful response containing the details of the specified tour.
⌘I