Skip to main content
GET
/
tour
Retrieve details for a specific public tour
curl --request GET \
  --url https://public-api.tixyapp.com/tour \
  --header 'Authorization: Bearer <token>'
{
  "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>"
}

Authorizations

Authorization
string
header
required

Custom Bearer token authentication for accessing public organizer endpoints.

Query Parameters

tourId
string

The unique identifier for the tour. Must be a 24-character hexadecimal string.

Example:

"550e8400-e29b-41d4-a716-446655440000"

tourSlug
string

The SEO-friendly slug for the tour. Accepts alphanumeric characters, hyphens, underscores, and periods.

Example:

"example-tour"

Response

Successful response containing the details of the specified tour.

id
string

Unique identifier for the tour.

name
string

Name of the tour.

events
object[]

List of events included in the tour.

description
string

A short description of the tour.

status
string

Current status of the tour (e.g., published, pastdue).