MENU navbar-image

Introduction

Welcome to EventZuno. EventZuno is an open event database. Use us to power your app, website or whatever you want! Access is free and open to most usecases, however if your app is commercial and requires heavy usage of the API, please contact us for a commersical license.

This documentation aims to provide all the information you need to work with our API.

Authenticating requests

This API is not authenticated.

Endpoints

Events List

Show a list of events

Example request:
curl --request GET \
    --get "https://eventzu.no/api/events" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"timeline\": \"upcoming\"
}"
const url = new URL(
    "https://eventzu.no/api/events"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "timeline": "upcoming"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/events',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
        'json' => [
            'timeline' => 'upcoming',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 59
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 12,
            "name": "Quisquam recusandae quo ea.",
            "start_date": "2023-05-23T23:00:00.000000Z",
            "end_date": "2023-05-24T21:00:00.000000Z",
            "location": "Saint Kitts and Nevis, Port Elvaville",
            "timeline": "upcoming",
            "time_until": "In 2 days",
            "event_type": "live",
            "genres": [
                "Psychedelic",
                "Blues"
            ],
            "image": "https://via.placeholder.com/640x480.png/004466?text=non",
            "venues": [
                {
                    "id": 17,
                    "name": "Zemlak-Rice Arena",
                    "country": "Saint Kitts and Nevis",
                    "city": "Port Elvaville",
                    "geo": {
                        "lat": "4.999660000",
                        "lng": "169.645521000"
                    },
                    "link": "http://eventzu.no/api/venues/17"
                }
            ],
            "performers": [
                {
                    "id": 73,
                    "name": "Eleazar Abbott",
                    "role": "support",
                    "link": "http://eventzu.no/api/performers/73"
                },
                {
                    "id": 74,
                    "name": "Dr. Hailee West V",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/74"
                }
            ],
            "tickets": [
                {
                    "name": "iure",
                    "type": "discount_list",
                    "price": 60959,
                    "currency": "JPY"
                }
            ],
            "promoters": [
                {
                    "id": 4,
                    "name": "Stark Ltd",
                    "role": "support",
                    "link": "http://eventzu.no/api/promoters/4"
                }
            ],
            "tour": null,
            "link": "http://eventzu.no/api/events/12",
            "status": "cancelled"
        },
        {
            "id": 18,
            "name": "Explicabo odit tenetur aut.",
            "start_date": "2023-07-02T21:00:00.000000Z",
            "end_date": "2023-07-04T12:00:00.000000Z",
            "location": "Haiti, Hudsontown",
            "timeline": "upcoming",
            "time_until": "In 1 month",
            "event_type": "theater",
            "genres": [
                "Comedy",
                "Latin"
            ],
            "image": "https://via.placeholder.com/640x480.png/0033ff?text=distinctio",
            "venues": [
                {
                    "id": 23,
                    "name": "Kris and Sons Arena",
                    "country": "Haiti",
                    "city": "Hudsontown",
                    "geo": {
                        "lat": "-25.713651000",
                        "lng": "37.306272000"
                    },
                    "link": "http://eventzu.no/api/venues/23"
                }
            ],
            "performers": [
                {
                    "id": 85,
                    "name": "Mr. Boris Auer",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/85"
                },
                {
                    "id": 86,
                    "name": "Prof. Brandi Sanford V",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/86"
                },
                {
                    "id": 64,
                    "name": "Bert Jacobson",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/64"
                }
            ],
            "tickets": [
                {
                    "name": "nam",
                    "type": "discount_list",
                    "price": 62,
                    "currency": "BBD"
                }
            ],
            "promoters": [],
            "tour": {
                "id": 1,
                "name": "Bert Jacobson Tour",
                "performer": {
                    "id": 64,
                    "name": "Bert Jacobson",
                    "link": "http://eventzu.no/api/performers/64"
                },
                "link": "http://eventzu.no/api/tours/1"
            },
            "link": "http://eventzu.no/api/events/18",
            "status": "cancelled"
        },
        {
            "id": 21,
            "name": "Tempore qui ut odio.",
            "start_date": "2023-06-22T19:00:00.000000Z",
            "end_date": "2023-06-24T15:00:00.000000Z",
            "location": "Greenland, Wintheiserside",
            "timeline": "upcoming",
            "time_until": "In 1 month",
            "event_type": "stage",
            "genres": [
                "Ambient",
                "Country"
            ],
            "image": "https://via.placeholder.com/640x480.png/0066cc?text=nostrum",
            "venues": [
                {
                    "id": 26,
                    "name": "Champlin-O'Hara Hall",
                    "country": "Greenland",
                    "city": "Wintheiserside",
                    "geo": {
                        "lat": "11.977596000",
                        "lng": "-159.209010000"
                    },
                    "link": "http://eventzu.no/api/venues/26"
                }
            ],
            "performers": [
                {
                    "id": 91,
                    "name": "Adriana Grady",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/91"
                },
                {
                    "id": 92,
                    "name": "Mrs. Mabel Cassin",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/92"
                },
                {
                    "id": 75,
                    "name": "Dr. Kristofer Hand",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/75"
                }
            ],
            "tickets": [
                {
                    "name": "voluptates",
                    "type": "general",
                    "price": 67284,
                    "currency": "NAD"
                }
            ],
            "promoters": [],
            "tour": {
                "id": 2,
                "name": "Dr. Kristofer Hand Tour",
                "performer": {
                    "id": 75,
                    "name": "Dr. Kristofer Hand",
                    "link": "http://eventzu.no/api/performers/75"
                },
                "link": "http://eventzu.no/api/tours/2"
            },
            "link": "http://eventzu.no/api/events/21",
            "status": "cancelled"
        },
        {
            "id": 1,
            "name": "Qui voluptatem accusamus.",
            "start_date": "2023-05-26T15:00:00.000000Z",
            "end_date": "2023-05-27T23:00:00.000000Z",
            "location": "Jordan, Port Federicomouth",
            "timeline": "upcoming",
            "time_until": "In 5 days",
            "event_type": "theater",
            "genres": [
                "Pop",
                "Folk"
            ],
            "image": "https://via.placeholder.com/640x480.png/004499?text=odio",
            "venues": [
                {
                    "id": 6,
                    "name": "Wuckert Ltd Hall",
                    "country": "Jordan",
                    "city": "Port Federicomouth",
                    "geo": {
                        "lat": "-30.976009000",
                        "lng": "-149.790341000"
                    },
                    "link": "http://eventzu.no/api/venues/6"
                }
            ],
            "performers": [
                {
                    "id": 51,
                    "name": "Prof. Luz Price",
                    "role": "co_headliner",
                    "link": "http://eventzu.no/api/performers/51"
                },
                {
                    "id": 52,
                    "name": "Keyon Walsh",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/52"
                }
            ],
            "tickets": [
                {
                    "name": "quod",
                    "type": "free_guest",
                    "price": 88326,
                    "currency": "SZL"
                },
                {
                    "name": "non",
                    "type": "free_guest",
                    "price": 50535,
                    "currency": "CUP"
                }
            ],
            "promoters": [],
            "tour": null,
            "link": "http://eventzu.no/api/events/1",
            "status": "postponed"
        },
        {
            "id": 9,
            "name": "Incidunt incidunt distinctio.",
            "start_date": "2023-06-02T23:00:00.000000Z",
            "end_date": "2023-06-04T00:00:00.000000Z",
            "location": "Bangladesh, Port Darron",
            "timeline": "upcoming",
            "time_until": "In 2 weeks",
            "event_type": "concert",
            "genres": [
                "Soca",
                "Film"
            ],
            "image": "https://via.placeholder.com/640x480.png/005544?text=excepturi",
            "venues": [
                {
                    "id": 14,
                    "name": "Langosh, Walsh and Predovic Hall",
                    "country": "Bangladesh",
                    "city": "Port Darron",
                    "geo": {
                        "lat": "-79.986665000",
                        "lng": "-157.394342000"
                    },
                    "link": "http://eventzu.no/api/venues/14"
                }
            ],
            "performers": [
                {
                    "id": 67,
                    "name": "Stephania Auer",
                    "role": "co_headliner",
                    "link": "http://eventzu.no/api/performers/67"
                },
                {
                    "id": 68,
                    "name": "Chelsey Russel",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/68"
                }
            ],
            "tickets": [
                {
                    "name": "odio",
                    "type": "discount_list",
                    "price": 20007,
                    "currency": "MOP"
                }
            ],
            "promoters": [
                {
                    "id": 2,
                    "name": "Padberg and Sons",
                    "role": "invitation",
                    "link": "http://eventzu.no/api/promoters/2"
                }
            ],
            "tour": null,
            "link": "http://eventzu.no/api/events/9",
            "status": "postponed"
        },
        {
            "id": 14,
            "name": "Sint ab hic earum.",
            "start_date": "2023-06-19T10:00:00.000000Z",
            "end_date": "2023-06-22T07:00:00.000000Z",
            "location": "Mauritania, Sheaville",
            "timeline": "upcoming",
            "time_until": "In 4 weeks",
            "event_type": "online",
            "genres": [
                "Dubstep",
                "Comedy"
            ],
            "image": "https://via.placeholder.com/640x480.png/000033?text=natus",
            "venues": [
                {
                    "id": 19,
                    "name": "Kulas-Bauch Stadium",
                    "country": "Mauritania",
                    "city": "Sheaville",
                    "geo": {
                        "lat": "-37.980315000",
                        "lng": "-107.819678000"
                    },
                    "link": "http://eventzu.no/api/venues/19"
                }
            ],
            "performers": [
                {
                    "id": 77,
                    "name": "Quinton Bernier",
                    "role": "support",
                    "link": "http://eventzu.no/api/performers/77"
                },
                {
                    "id": 78,
                    "name": "Dr. Damaris Kovacek",
                    "role": "co_headliner",
                    "link": "http://eventzu.no/api/performers/78"
                }
            ],
            "tickets": [
                {
                    "name": "voluptatibus",
                    "type": "discount_list",
                    "price": 11366,
                    "currency": "SGD"
                }
            ],
            "promoters": [
                {
                    "id": 5,
                    "name": "Kris, Kessler and Casper",
                    "role": "cooperation",
                    "link": "http://eventzu.no/api/promoters/5"
                }
            ],
            "tour": null,
            "link": "http://eventzu.no/api/events/14",
            "status": "postponed"
        },
        {
            "id": 16,
            "name": "Est est itaque voluptates.",
            "start_date": "2023-06-11T06:00:00.000000Z",
            "end_date": "2023-06-11T18:00:00.000000Z",
            "location": "Turks and Caicos Islands, Hartmannview",
            "timeline": "upcoming",
            "time_until": "In 3 weeks",
            "event_type": "physical",
            "genres": [
                "House",
                "Folk"
            ],
            "image": "https://via.placeholder.com/640x480.png/0044ee?text=laborum",
            "venues": [
                {
                    "id": 21,
                    "name": "Kuvalis-Dietrich Hall",
                    "country": "Turks and Caicos Islands",
                    "city": "Hartmannview",
                    "geo": {
                        "lat": "-45.953960000",
                        "lng": "152.596685000"
                    },
                    "link": "http://eventzu.no/api/venues/21"
                }
            ],
            "performers": [
                {
                    "id": 81,
                    "name": "Jeanie Collier",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/81"
                },
                {
                    "id": 82,
                    "name": "Sheldon Grady",
                    "role": "support",
                    "link": "http://eventzu.no/api/performers/82"
                },
                {
                    "id": 64,
                    "name": "Bert Jacobson",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/64"
                }
            ],
            "tickets": [
                {
                    "name": "deleniti",
                    "type": "door",
                    "price": 99734,
                    "currency": "CHF"
                }
            ],
            "promoters": [],
            "tour": {
                "id": 1,
                "name": "Bert Jacobson Tour",
                "performer": {
                    "id": 64,
                    "name": "Bert Jacobson",
                    "link": "http://eventzu.no/api/performers/64"
                },
                "link": "http://eventzu.no/api/tours/1"
            },
            "link": "http://eventzu.no/api/events/16",
            "status": "postponed"
        },
        {
            "id": 19,
            "name": "Asperiores excepturi dignissimos ut soluta.",
            "start_date": "2023-06-22T12:00:00.000000Z",
            "end_date": "2023-06-25T02:00:00.000000Z",
            "location": "Maldives, Rutherfordfort",
            "timeline": "upcoming",
            "time_until": "In 1 month",
            "event_type": "hybrid",
            "genres": [
                "House",
                "Ambient"
            ],
            "image": "https://via.placeholder.com/640x480.png/00bbcc?text=quo",
            "venues": [
                {
                    "id": 24,
                    "name": "Eichmann, Lind and Grimes Center",
                    "country": "Maldives",
                    "city": "Rutherfordfort",
                    "geo": {
                        "lat": "70.563945000",
                        "lng": "-90.327374000"
                    },
                    "link": "http://eventzu.no/api/venues/24"
                }
            ],
            "performers": [
                {
                    "id": 87,
                    "name": "Mr. Jay Schamberger",
                    "role": "support",
                    "link": "http://eventzu.no/api/performers/87"
                },
                {
                    "id": 88,
                    "name": "Isai Durgan",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/88"
                },
                {
                    "id": 75,
                    "name": "Dr. Kristofer Hand",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/75"
                }
            ],
            "tickets": [
                {
                    "name": "et",
                    "type": "discount_list",
                    "price": 64060,
                    "currency": "SHP"
                }
            ],
            "promoters": [],
            "tour": {
                "id": 2,
                "name": "Dr. Kristofer Hand Tour",
                "performer": {
                    "id": 75,
                    "name": "Dr. Kristofer Hand",
                    "link": "http://eventzu.no/api/performers/75"
                },
                "link": "http://eventzu.no/api/tours/2"
            },
            "link": "http://eventzu.no/api/events/19",
            "status": "postponed"
        },
        {
            "id": 22,
            "name": "Natus et labore.",
            "start_date": "2023-05-22T07:00:00.000000Z",
            "end_date": "2023-05-23T21:00:00.000000Z",
            "location": "Montenegro, Abernathyport",
            "timeline": "upcoming",
            "time_until": "In 17 hours",
            "event_type": "stage",
            "genres": [
                "HardStyle",
                "Classical"
            ],
            "image": "https://via.placeholder.com/640x480.png/0033aa?text=aliquam",
            "venues": [
                {
                    "id": 27,
                    "name": "Ortiz PLC Center",
                    "country": "Montenegro",
                    "city": "Abernathyport",
                    "geo": {
                        "lat": "74.459004000",
                        "lng": "-17.965514000"
                    },
                    "link": "http://eventzu.no/api/venues/27"
                }
            ],
            "performers": [
                {
                    "id": 93,
                    "name": "Imelda Mraz",
                    "role": "co_headliner",
                    "link": "http://eventzu.no/api/performers/93"
                },
                {
                    "id": 94,
                    "name": "Uriah Runolfsdottir",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/94"
                },
                {
                    "id": 68,
                    "name": "Chelsey Russel",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/68"
                }
            ],
            "tickets": [
                {
                    "name": "nam",
                    "type": "vip",
                    "price": 3836,
                    "currency": "XOF"
                }
            ],
            "promoters": [],
            "tour": {
                "id": 3,
                "name": "Chelsey Russel Tour",
                "performer": {
                    "id": 68,
                    "name": "Chelsey Russel",
                    "link": "http://eventzu.no/api/performers/68"
                },
                "link": "http://eventzu.no/api/tours/3"
            },
            "link": "http://eventzu.no/api/events/22",
            "status": "postponed"
        },
        {
            "id": 26,
            "name": "Molestias eos.",
            "start_date": "2023-06-10T12:00:00.000000Z",
            "end_date": "2023-06-13T04:00:00.000000Z",
            "location": "Iceland, Lake Melbaborough",
            "timeline": "upcoming",
            "time_until": "In 3 weeks",
            "event_type": "concert",
            "genres": [
                "Afrobeats",
                "Gospel"
            ],
            "image": "https://via.placeholder.com/640x480.png/00cc88?text=velit",
            "venues": [
                {
                    "id": 31,
                    "name": "Torp, Weimann and Kulas Arena",
                    "country": "Iceland",
                    "city": "Lake Melbaborough",
                    "geo": {
                        "lat": "50.424273000",
                        "lng": "-57.850447000"
                    },
                    "link": "http://eventzu.no/api/venues/31"
                }
            ],
            "performers": [
                {
                    "id": 101,
                    "name": "Delphia Osinski",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/101"
                },
                {
                    "id": 102,
                    "name": "Yessenia Swaniawski Jr.",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/102"
                },
                {
                    "id": 76,
                    "name": "Rozella Volkman",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/76"
                }
            ],
            "tickets": [
                {
                    "name": "ducimus",
                    "type": "discount_list",
                    "price": 88896,
                    "currency": "BBD"
                }
            ],
            "promoters": [],
            "tour": {
                "id": 4,
                "name": "Rozella Volkman Tour",
                "performer": {
                    "id": 76,
                    "name": "Rozella Volkman",
                    "link": "http://eventzu.no/api/performers/76"
                },
                "link": "http://eventzu.no/api/tours/4"
            },
            "link": "http://eventzu.no/api/events/26",
            "status": "postponed"
        }
    ],
    "links": {
        "first": "http://localhost/api/events?page=1",
        "last": "http://localhost/api/events?page=2",
        "prev": null,
        "next": "http://localhost/api/events?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 2,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/events?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": "http://localhost/api/events?page=2",
                "label": "2",
                "active": false
            },
            {
                "url": "http://localhost/api/events?page=2",
                "label": "Next »",
                "active": false
            }
        ],
        "path": "http://localhost/api/events",
        "per_page": 10,
        "to": 10,
        "total": 16
    }
}
 

Request      

GET api/events

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

search   string  optional  

Search by name.

timeline   string  optional  

Timeline of events, this defaults to upcoming. Must be one of upcoming, ongoing, or past. Example: upcoming

date_after   string  optional  

Find events after this date. Must be a valid date.

date_before   string  optional  

Find events before this date. Must be a valid date.

event_type   string  optional  

Event type name search.

genre   string  optional  

Genre name search.

location   string  optional  

Location name search, country, region or city.

performer   string  optional  

Performer name search.

venue   string  optional  

Venue name search.

Events Item

Display the specified event resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/events/11" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/events/11"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/events/11',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 58
access-control-allow-origin: *
 

{
    "data": {
        "id": 11,
        "name": "Consequuntur veniam qui hic.",
        "start_date": "2023-05-06T23:00:00.000000Z",
        "end_date": "2023-05-09T17:00:00.000000Z",
        "description": "Quia et aperiam unde ut aperiam. Eveniet dolores consequuntur magnam repudiandae. Odio ut exercitationem quia aut beatae.",
        "location": "Andorra, Carrollmouth",
        "timeline": "past",
        "time_until": "2 weeks ago",
        "event_type": "stage",
        "genres": [
            "Drum & Bass",
            "Country"
        ],
        "image": "https://via.placeholder.com/640x480.png/004422?text=vel",
        "venues": [
            {
                "id": 16,
                "name": "McLaughlin Group Arena",
                "country": "Andorra",
                "region": "California",
                "city": "Carrollmouth",
                "address": "47631 Langosh Ports Apt. 445\nNorth Maverick, CT 53231-0538, Carrollmouth, California, Andorra",
                "geo": {
                    "lat": "89.953027000",
                    "lng": "75.287169000"
                },
                "image": "https://via.placeholder.com/640x480.png/008888?text=maxime",
                "link": "http://eventzu.no/api/venues/16"
            }
        ],
        "performers": [
            {
                "id": 71,
                "name": "Juvenal Block",
                "role": "guest",
                "image": "https://via.placeholder.com/640x480.png/007799?text=maiores",
                "bio": "Ut autem accusamus iusto quisquam sint excepturi. Ad laudantium odit ducimus quisquam odit et numquam. Placeat pariatur fuga veniam error distinctio sed aut.",
                "link": "http://eventzu.no/api/performers/71"
            },
            {
                "id": 72,
                "name": "Woodrow Hudson V",
                "role": "co_headliner",
                "image": "https://via.placeholder.com/640x480.png/009966?text=laborum",
                "bio": "Corrupti ea tempore eum omnis dolores corporis et. Dolorem possimus ut ea quod. Temporibus quia laudantium et magnam non ut nihil eum.",
                "link": "http://eventzu.no/api/performers/72"
            }
        ],
        "tickets": [
            {
                "name": "ad",
                "type": "discount_list",
                "price": 9679,
                "currency": "UGX",
                "available_from": "2023-04-08 15:00:00",
                "available_until": "2023-04-11 08:00:00",
                "source_url": "http://www.stiedemann.biz/aperiam-corrupti-animi-autem",
                "ticketor": {
                    "id": 2,
                    "name": "Romaguera Inc Tixs",
                    "link": "http://eventzu.no/api/ticketors/2"
                }
            }
        ],
        "promoters": [
            {
                "id": 3,
                "name": "Deckow, Crona and Williamson",
                "role": "support",
                "image": "https://via.placeholder.com/640x480.png/00aa22?text=pariatur",
                "link": "http://eventzu.no/api/promoters/3"
            }
        ],
        "tour": null,
        "media": [],
        "social_links": [],
        "status": "cancelled"
    }
}
 

Request      

GET api/events/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the event. Example: 11

Venues List

Show a list of venues

Example request:
curl --request GET \
    --get "https://eventzu.no/api/venues" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/venues"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/venues',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 57
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "name": "Gleason, Bergstrom and Dare Arena",
            "venue_type": "Stage",
            "country": "Honduras",
            "region": "Delaware",
            "city": "West Alize",
            "address": "12747 Pacocha Locks Suite 655\nLake Vernhaven, OK 71366, West Alize, Delaware, Honduras",
            "geo": {
                "lat": "19.297042000",
                "lng": "144.592221000"
            },
            "capacity": 280,
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "url": "http://www.wehner.biz/",
            "image": null,
            "link": "http://eventzu.no/api/venues/1"
        },
        {
            "id": 2,
            "name": "Kshlerin Group Stadium",
            "venue_type": "Arena",
            "country": "Canada",
            "region": "Rhode Island",
            "city": "Port Mariana",
            "address": "8572 Von Park Apt. 191\nSchillerburgh, VT 32379-3772, Port Mariana, Rhode Island, Canada",
            "geo": {
                "lat": "-64.449305000",
                "lng": "-5.776838000"
            },
            "capacity": 246,
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "url": "http://www.krajcik.com/ipsum-facilis-tempore-voluptatem-provident-nobis-voluptatibus",
            "image": null,
            "link": "http://eventzu.no/api/venues/2"
        },
        {
            "id": 3,
            "name": "Bode, Cronin and Kulas Center",
            "venue_type": "Streaming",
            "country": "Andorra",
            "region": "Georgia",
            "city": "North Amirafort",
            "address": "7302 Schimmel Parkway\nNorth Hazle, IL 98088, North Amirafort, Georgia, Andorra",
            "geo": {
                "lat": "20.594119000",
                "lng": "101.586344000"
            },
            "capacity": 944,
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "url": "http://padberg.org/voluptas-quibusdam-laborum-voluptatibus-dolorem-eos.html",
            "image": null,
            "link": "http://eventzu.no/api/venues/3"
        },
        {
            "id": 4,
            "name": "Weber Ltd Hall",
            "venue_type": "Livehouse",
            "country": "Israel",
            "region": "North Carolina",
            "city": "Lake Chandlerberg",
            "address": "456 Chaya Place Suite 968\nRennerville, WI 24288-3044, Lake Chandlerberg, North Carolina, Israel",
            "geo": {
                "lat": "-19.600071000",
                "lng": "-45.084720000"
            },
            "capacity": 136,
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "url": "http://murazik.net/eum-temporibus-quisquam-expedita-architecto.html",
            "image": null,
            "link": "http://eventzu.no/api/venues/4"
        },
        {
            "id": 5,
            "name": "Walker, Willms and Lakin Stadium",
            "venue_type": "Club",
            "country": "Slovakia (Slovak Republic)",
            "region": "North Dakota",
            "city": "New Chadrick",
            "address": "9628 Cassin Spur Suite 147\nPort Edwardofurt, KY 97012, New Chadrick, North Dakota, Slovakia (Slovak Republic)",
            "geo": {
                "lat": "-50.570159000",
                "lng": "114.667319000"
            },
            "capacity": 672,
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "url": "http://www.raynor.biz/",
            "image": null,
            "link": "http://eventzu.no/api/venues/5"
        },
        {
            "id": 6,
            "name": "Wuckert Ltd Hall",
            "venue_type": "Streaming",
            "country": "Jordan",
            "region": "Rhode Island",
            "city": "Port Federicomouth",
            "address": "5210 Waelchi Groves\nNew Rubie, MT 34745, Port Federicomouth, Rhode Island, Jordan",
            "geo": {
                "lat": "-30.976009000",
                "lng": "-149.790341000"
            },
            "capacity": 340,
            "upcoming_event_count": 1,
            "upcoming_events": [
                {
                    "id": 1,
                    "name": "Qui voluptatem accusamus.",
                    "start_date": "2023-05-26T15:00:00.000000Z",
                    "location": "Jordan, Port Federicomouth",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 6,
                            "name": "Wuckert Ltd Hall",
                            "country": "Jordan",
                            "city": "Port Federicomouth",
                            "geo": {
                                "lat": "-30.976009000",
                                "lng": "-149.790341000"
                            },
                            "link": "http://eventzu.no/api/venues/6"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/1",
                    "status": "postponed"
                }
            ],
            "url": "http://www.toy.org/",
            "image": null,
            "link": "http://eventzu.no/api/venues/6"
        },
        {
            "id": 7,
            "name": "Kautzer-Schneider Arena",
            "venue_type": "Streaming",
            "country": "Lesotho",
            "region": "California",
            "city": "New Meredith",
            "address": "792 Runte Point\nNorth Dovieville, TX 79520-9179, New Meredith, California, Lesotho",
            "geo": {
                "lat": "89.850478000",
                "lng": "133.377688000"
            },
            "capacity": 817,
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "url": "http://nicolas.org/doloremque-natus-illum-voluptate-odit-ut-ut-cum-eos",
            "image": null,
            "link": "http://eventzu.no/api/venues/7"
        },
        {
            "id": 8,
            "name": "Spencer-Wisozk Stadium",
            "venue_type": "Club",
            "country": "Norfolk Island",
            "region": "Massachusetts",
            "city": "Kleinbury",
            "address": "2736 Wilmer Pine Suite 165\nNew Savionbury, WA 49555-7111, Kleinbury, Massachusetts, Norfolk Island",
            "geo": {
                "lat": "-19.811104000",
                "lng": "-18.445472000"
            },
            "capacity": 974,
            "upcoming_event_count": 1,
            "upcoming_events": [
                {
                    "id": 3,
                    "name": "Et placeat atque rerum.",
                    "start_date": "2023-06-26T23:00:00.000000Z",
                    "location": "Norfolk Island, Kleinbury",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 8,
                            "name": "Spencer-Wisozk Stadium",
                            "country": "Norfolk Island",
                            "city": "Kleinbury",
                            "geo": {
                                "lat": "-19.811104000",
                                "lng": "-18.445472000"
                            },
                            "link": "http://eventzu.no/api/venues/8"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/3",
                    "status": "published"
                }
            ],
            "url": "http://www.bergstrom.com/et-quia-voluptas-aut-nobis-non-cum",
            "image": null,
            "link": "http://eventzu.no/api/venues/8"
        },
        {
            "id": 9,
            "name": "Mertz-Roberts Stadium",
            "venue_type": "Club",
            "country": "Belarus",
            "region": "Vermont",
            "city": "Port Sambury",
            "address": "1833 Gunner Alley Apt. 999\nOvachester, VA 30193, Port Sambury, Vermont, Belarus",
            "geo": {
                "lat": "53.374067000",
                "lng": "-179.607199000"
            },
            "capacity": 165,
            "upcoming_event_count": 1,
            "upcoming_events": [
                {
                    "id": 4,
                    "name": "Autem consequuntur magnam explicabo aut.",
                    "start_date": "2023-06-12T15:00:00.000000Z",
                    "location": "Belarus, Port Sambury",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 9,
                            "name": "Mertz-Roberts Stadium",
                            "country": "Belarus",
                            "city": "Port Sambury",
                            "geo": {
                                "lat": "53.374067000",
                                "lng": "-179.607199000"
                            },
                            "link": "http://eventzu.no/api/venues/9"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/4",
                    "status": "published"
                }
            ],
            "url": "http://koch.info/impedit-repudiandae-quo-laudantium-ex-modi",
            "image": null,
            "link": "http://eventzu.no/api/venues/9"
        },
        {
            "id": 10,
            "name": "Raynor, Romaguera and Adams Center",
            "venue_type": "Livehouse",
            "country": "Senegal",
            "region": "Pennsylvania",
            "city": "Port Hassie",
            "address": "6753 Zane Point\nNorth Guidoton, IL 99313-2248, Port Hassie, Pennsylvania, Senegal",
            "geo": {
                "lat": "-77.350433000",
                "lng": "-168.526959000"
            },
            "capacity": 341,
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "url": "http://wilderman.com/est-tempore-omnis-libero-et-repudiandae-ex-ut-sed",
            "image": null,
            "link": "http://eventzu.no/api/venues/10"
        }
    ],
    "links": {
        "first": "http://localhost/api/venues?page=1",
        "last": "http://localhost/api/venues?page=4",
        "prev": null,
        "next": "http://localhost/api/venues?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 4,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/venues?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": "http://localhost/api/venues?page=2",
                "label": "2",
                "active": false
            },
            {
                "url": "http://localhost/api/venues?page=3",
                "label": "3",
                "active": false
            },
            {
                "url": "http://localhost/api/venues?page=4",
                "label": "4",
                "active": false
            },
            {
                "url": "http://localhost/api/venues?page=2",
                "label": "Next »",
                "active": false
            }
        ],
        "path": "http://localhost/api/venues",
        "per_page": 10,
        "to": 10,
        "total": 36
    }
}
 

Request      

GET api/venues

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

search   string  optional  

Search by name.

venue_type   string  optional  

Venue type name search.

location   string  optional  

Location name search, country, region or city.

timeline   string  optional  

Filter with events in timeline. Must be one of upcoming, ongoing, or past.

date_after   string  optional  

Filter with events after this date. Must be a valid date.

date_before   string  optional  

Filter with events before this date. Must be a valid date.

Venues Item

Display the specified venues resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/venues/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/venues/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/venues/1',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 56
access-control-allow-origin: *
 

{
    "data": {
        "id": 1,
        "name": "Gleason, Bergstrom and Dare Arena",
        "venue_type": "Stage",
        "country": "Honduras",
        "region": "Delaware",
        "city": "West Alize",
        "address": "12747 Pacocha Locks Suite 655\nLake Vernhaven, OK 71366, West Alize, Delaware, Honduras",
        "geo": {
            "lat": "19.297042000",
            "lng": "144.592221000"
        },
        "capacity": 280,
        "upcoming_event_count": 0,
        "upcoming_events": [],
        "event_count": 0,
        "seating_capacity": 710,
        "description": "Fuga quasi velit aliquam provident quia accusantium ad ut nulla aliquid ratione qui quas.",
        "url": "http://www.wehner.biz/",
        "image": null,
        "media": [
            {
                "media_type": "image",
                "file_url": "https://via.placeholder.com/640x480.png/00ff66?text=voluptatum",
                "caption": "Voluptatem culpa sed aliquam dicta nam illum."
            },
            {
                "media_type": "music",
                "file_url": "https://via.placeholder.com/640x480.png/00dd99?text=velit",
                "caption": "Consectetur laborum autem et."
            },
            {
                "media_type": "video",
                "file_url": "https://via.placeholder.com/640x480.png/005599?text=non",
                "caption": "Enim possimus repudiandae laborum officiis cumque provident voluptatem."
            }
        ],
        "social_links": [
            {
                "platform": "YouTube",
                "url": "https://www.youtube.com/user/carolyn77"
            },
            {
                "platform": "Twitter",
                "url": "https://www.twitter.com/khintz"
            }
        ]
    }
}
 

Request      

GET api/venues/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the venue. Example: 1

Venue Events

Show a list of events related to the specified venue resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/venues/1/events" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/venues/1/events"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/venues/1/events',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 55
access-control-allow-origin: *
 

{
    "data": [],
    "links": {
        "first": "http://localhost/api/venues/1/events?page=1",
        "last": "http://localhost/api/venues/1/events?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": null,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/venues/1/events?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "active": false
            }
        ],
        "path": "http://localhost/api/venues/1/events",
        "per_page": 10,
        "to": null,
        "total": 0
    }
}
 

Request      

GET api/venues/{venue_id}/events

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

venue_id   integer   

The ID of the venue. Example: 1

Body Parameters

timeline   string  optional  

Filter with events in timeline, defaults to upcoming. Must be one of upcoming, ongoing, or past.

date_after   string  optional  

Filter with events after this date. Must be a valid date.

date_before   string  optional  

Filter with events before this date. Must be a valid date.

Tours List

Show a list of tours

Example request:
curl --request GET \
    --get "https://eventzu.no/api/tours" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/tours"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/tours',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 54
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 2,
            "name": "Dr. Kristofer Hand Tour",
            "start_date": "2023-06-05T03:00:00.000000Z",
            "end_date": "2023-07-30T11:06:23.000000Z",
            "timeline": "Upcoming",
            "time_until": "In 2 weeks",
            "event_count": 4,
            "performer": {
                "id": 75,
                "name": "Dr. Kristofer Hand",
                "link": "http://eventzu.no/api/performers/75"
            },
            "events": [
                {
                    "id": 19,
                    "name": "Asperiores excepturi dignissimos ut soluta.",
                    "start_date": "2023-06-22T12:00:00.000000Z",
                    "location": "Maldives, Rutherfordfort",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 24,
                            "name": "Eichmann, Lind and Grimes Center",
                            "country": "Maldives",
                            "city": "Rutherfordfort",
                            "geo": {
                                "lat": "70.563945000",
                                "lng": "-90.327374000"
                            },
                            "link": "http://eventzu.no/api/venues/24"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/19",
                    "status": "postponed"
                },
                {
                    "id": 20,
                    "name": "Amet omnis aut rem.",
                    "start_date": "2023-06-12T21:00:00.000000Z",
                    "location": "Marshall Islands, McDermottville",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 25,
                            "name": "Ankunding-Collins Stadium",
                            "country": "Marshall Islands",
                            "city": "McDermottville",
                            "geo": {
                                "lat": "-88.943586000",
                                "lng": "21.912333000"
                            },
                            "link": "http://eventzu.no/api/venues/25"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/20",
                    "status": "published"
                },
                {
                    "id": 21,
                    "name": "Tempore qui ut odio.",
                    "start_date": "2023-06-22T19:00:00.000000Z",
                    "location": "Greenland, Wintheiserside",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 26,
                            "name": "Champlin-O'Hara Hall",
                            "country": "Greenland",
                            "city": "Wintheiserside",
                            "geo": {
                                "lat": "11.977596000",
                                "lng": "-159.209010000"
                            },
                            "link": "http://eventzu.no/api/venues/26"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/21",
                    "status": "cancelled"
                },
                {
                    "id": 32,
                    "name": "testing",
                    "start_date": "2023-05-05T13:35:00.000000Z",
                    "location": "Canada, Port Mariana",
                    "timeline": "past",
                    "venues": [
                        {
                            "id": 2,
                            "name": "Kshlerin Group Stadium",
                            "country": "Canada",
                            "city": "Port Mariana",
                            "geo": {
                                "lat": "-64.449305000",
                                "lng": "-5.776838000"
                            },
                            "link": "http://eventzu.no/api/venues/2"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/32",
                    "status": "published"
                }
            ],
            "link": "http://eventzu.no/api/tours/2"
        },
        {
            "id": 3,
            "name": "Chelsey Russel Tour",
            "start_date": "2023-06-02T07:00:00.000000Z",
            "end_date": "2023-07-09T14:24:11.000000Z",
            "timeline": "Upcoming",
            "time_until": "In 2 weeks",
            "event_count": 3,
            "performer": {
                "id": 68,
                "name": "Chelsey Russel",
                "link": "http://eventzu.no/api/performers/68"
            },
            "events": [
                {
                    "id": 22,
                    "name": "Natus et labore.",
                    "start_date": "2023-05-22T07:00:00.000000Z",
                    "location": "Montenegro, Abernathyport",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 27,
                            "name": "Ortiz PLC Center",
                            "country": "Montenegro",
                            "city": "Abernathyport",
                            "geo": {
                                "lat": "74.459004000",
                                "lng": "-17.965514000"
                            },
                            "link": "http://eventzu.no/api/venues/27"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/22",
                    "status": "postponed"
                },
                {
                    "id": 23,
                    "name": "Iusto quod maiores.",
                    "start_date": "2023-05-05T07:00:00.000000Z",
                    "location": "Honduras, North Eliseoberg",
                    "timeline": "past",
                    "venues": [
                        {
                            "id": 28,
                            "name": "Kilback LLC Stadium",
                            "country": "Honduras",
                            "city": "North Eliseoberg",
                            "geo": {
                                "lat": "-84.494331000",
                                "lng": "-149.780469000"
                            },
                            "link": "http://eventzu.no/api/venues/28"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/23",
                    "status": "cancelled"
                },
                {
                    "id": 24,
                    "name": "In consequatur incidunt ut.",
                    "start_date": "2023-04-29T13:00:00.000000Z",
                    "location": "Mayotte, Maymieport",
                    "timeline": "past",
                    "venues": [
                        {
                            "id": 29,
                            "name": "Daugherty LLC Hall",
                            "country": "Mayotte",
                            "city": "Maymieport",
                            "geo": {
                                "lat": "-49.602985000",
                                "lng": "-139.440138000"
                            },
                            "link": "http://eventzu.no/api/venues/29"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/24",
                    "status": "postponed"
                }
            ],
            "link": "http://eventzu.no/api/tours/3"
        },
        {
            "id": 4,
            "name": "Rozella Volkman Tour",
            "start_date": "2023-06-11T05:00:00.000000Z",
            "end_date": "2023-08-15T02:55:34.000000Z",
            "timeline": "Upcoming",
            "time_until": "In 3 weeks",
            "event_count": 2,
            "performer": {
                "id": 76,
                "name": "Rozella Volkman",
                "link": "http://eventzu.no/api/performers/76"
            },
            "events": [
                {
                    "id": 26,
                    "name": "Molestias eos.",
                    "start_date": "2023-06-10T12:00:00.000000Z",
                    "location": "Iceland, Lake Melbaborough",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 31,
                            "name": "Torp, Weimann and Kulas Arena",
                            "country": "Iceland",
                            "city": "Lake Melbaborough",
                            "geo": {
                                "lat": "50.424273000",
                                "lng": "-57.850447000"
                            },
                            "link": "http://eventzu.no/api/venues/31"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/26",
                    "status": "postponed"
                },
                {
                    "id": 27,
                    "name": "Reprehenderit pariatur.",
                    "start_date": "2023-06-27T15:00:00.000000Z",
                    "location": "Antigua and Barbuda, West Alexandra",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 32,
                            "name": "Treutel-Gottlieb Stadium",
                            "country": "Antigua and Barbuda",
                            "city": "West Alexandra",
                            "geo": {
                                "lat": "-35.417420000",
                                "lng": "-91.941129000"
                            },
                            "link": "http://eventzu.no/api/venues/32"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/27",
                    "status": "published"
                }
            ],
            "link": "http://eventzu.no/api/tours/4"
        },
        {
            "id": 5,
            "name": "Prof. Harrison Hintz PhD Tour",
            "start_date": "2023-06-22T06:00:00.000000Z",
            "end_date": "2023-07-09T11:19:04.000000Z",
            "timeline": "Upcoming",
            "time_until": "In 1 month",
            "event_count": 2,
            "performer": {
                "id": 58,
                "name": "Prof. Harrison Hintz PhD",
                "link": "http://eventzu.no/api/performers/58"
            },
            "events": [
                {
                    "id": 29,
                    "name": "Porro numquam reiciendis ipsam.",
                    "start_date": "2023-05-24T14:00:00.000000Z",
                    "location": "Luxembourg, Port Keeleystad",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 34,
                            "name": "Botsford-Mohr Center",
                            "country": "Luxembourg",
                            "city": "Port Keeleystad",
                            "geo": {
                                "lat": "22.530658000",
                                "lng": "-107.428626000"
                            },
                            "link": "http://eventzu.no/api/venues/34"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/29",
                    "status": "published"
                },
                {
                    "id": 30,
                    "name": "Praesentium magnam est.",
                    "start_date": "2023-05-06T23:00:00.000000Z",
                    "location": "Palau, Ritchieside",
                    "timeline": "past",
                    "venues": [
                        {
                            "id": 35,
                            "name": "Marks-Williamson Center",
                            "country": "Palau",
                            "city": "Ritchieside",
                            "geo": {
                                "lat": "55.228862000",
                                "lng": "60.239040000"
                            },
                            "link": "http://eventzu.no/api/venues/35"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/30",
                    "status": "cancelled"
                }
            ],
            "link": "http://eventzu.no/api/tours/5"
        },
        {
            "id": 6,
            "name": "Test tour Yo!",
            "start_date": "2023-05-03T00:42:00.000000Z",
            "end_date": "2023-05-26T00:42:00.000000Z",
            "timeline": "Ongoing",
            "time_until": "4 days left",
            "event_count": 0,
            "performer": {
                "id": 75,
                "name": "Dr. Kristofer Hand",
                "link": "http://eventzu.no/api/performers/75"
            },
            "events": [],
            "link": "http://eventzu.no/api/tours/6"
        },
        {
            "id": 8,
            "name": "sddsds",
            "start_date": "2023-05-01T00:00:00.000000Z",
            "end_date": "2023-06-10T00:00:00.000000Z",
            "timeline": "Ongoing",
            "time_until": "3 weeks left",
            "event_count": 0,
            "performer": {
                "id": 2,
                "name": "Zoie Goodwin Jr.",
                "link": "http://eventzu.no/api/performers/2"
            },
            "events": [],
            "link": "http://eventzu.no/api/tours/8"
        }
    ],
    "links": {
        "first": "http://localhost/api/tours?page=1",
        "last": "http://localhost/api/tours?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/tours?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "active": false
            }
        ],
        "path": "http://localhost/api/tours",
        "per_page": 10,
        "to": 6,
        "total": 6
    }
}
 

Request      

GET api/tours

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

search   string  optional  

Search by name.

performer   string  optional  

Performer name search.

timeline   string  optional  

Filter with events in timeline, defaults to upcoming. Must be one of upcoming, ongoing, or past.

date_after   string  optional  

Filter with events after this date. Must be a valid date.

date_before   string  optional  

Filter with events before this date. Must be a valid date.

Tours Item

Display the specified tours resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/tours/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/tours/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/tours/1',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 53
access-control-allow-origin: *
 

{
    "data": {
        "id": 1,
        "name": "Bert Jacobson Tour",
        "start_date": "2023-04-30T23:00:00.000000Z",
        "end_date": "2023-05-18T09:44:16.000000Z",
        "timeline": "Past",
        "time_until": "3 days ago",
        "event_count": 3,
        "performer": {
            "id": 64,
            "name": "Bert Jacobson",
            "image": "https://via.placeholder.com/640x480.png/0066dd?text=sit",
            "bio": "Et quis ab deserunt beatae et molestiae. Porro quia incidunt iste odio. Aut perferendis voluptate voluptatem impedit tenetur.",
            "link": "http://eventzu.no/api/performers/64"
        },
        "events": [
            {
                "id": 18,
                "name": "Explicabo odit tenetur aut.",
                "start_date": "2023-07-02T21:00:00.000000Z",
                "end_date": "2023-07-04T12:00:00.000000Z",
                "description": "<p>Et rerum nisi in odit aliquam. Quis repellat quia natus molestias. Totam similique fugit corporis. Sed aliquam qui iste animi quasi beatae. Et expedita saepe sint aut reprehenderit harum.</p>",
                "location": "Haiti, Hudsontown",
                "timeline": "upcoming",
                "time_until": "In 1 month",
                "event_type": "theater",
                "genres": [
                    "Comedy",
                    "Latin"
                ],
                "image": "https://via.placeholder.com/640x480.png/0033ff?text=distinctio",
                "venues": [
                    {
                        "id": 23,
                        "name": "Kris and Sons Arena",
                        "country": "Haiti",
                        "region": "Kentucky",
                        "city": "Hudsontown",
                        "address": "6768 Kellie Burg Suite 063\nWilfredoborough, DE 08173-1877, Hudsontown, Kentucky, Haiti",
                        "geo": {
                            "lat": "-25.713651000",
                            "lng": "37.306272000"
                        },
                        "image": "https://via.placeholder.com/640x480.png/0088aa?text=qui",
                        "link": "http://eventzu.no/api/venues/23"
                    }
                ],
                "performers": [
                    {
                        "id": 85,
                        "name": "Mr. Boris Auer",
                        "role": "guest",
                        "image": "https://via.placeholder.com/640x480.png/008888?text=fuga",
                        "bio": "Provident repudiandae vel eligendi veniam at. Aut earum veritatis nisi. Similique est fugiat est sunt veritatis dolores ut.",
                        "link": "http://eventzu.no/api/performers/85"
                    },
                    {
                        "id": 86,
                        "name": "Prof. Brandi Sanford V",
                        "role": "headliner",
                        "image": "https://via.placeholder.com/640x480.png/004433?text=modi",
                        "bio": "Distinctio cumque quos consectetur accusantium veniam ab ex. Enim sequi amet molestiae omnis qui qui ratione. Ratione est a quam nihil.",
                        "link": "http://eventzu.no/api/performers/86"
                    },
                    {
                        "id": 64,
                        "name": "Bert Jacobson",
                        "role": "headliner",
                        "image": "https://via.placeholder.com/640x480.png/0066dd?text=sit",
                        "bio": "Et quis ab deserunt beatae et molestiae. Porro quia incidunt iste odio. Aut perferendis voluptate voluptatem impedit tenetur.",
                        "link": "http://eventzu.no/api/performers/64"
                    }
                ],
                "tickets": [
                    {
                        "name": "nam",
                        "type": "discount_list",
                        "price": 62,
                        "currency": "BBD",
                        "available_from": "2023-06-13 13:00:00",
                        "available_until": "2023-06-14 01:00:00",
                        "source_url": "https://www.morar.com/iusto-quam-sunt-blanditiis-eveniet",
                        "ticketor": {
                            "id": 2,
                            "name": "Romaguera Inc Tixs",
                            "link": "http://eventzu.no/api/ticketors/2"
                        }
                    }
                ],
                "promoters": [],
                "tour": {
                    "id": 1,
                    "name": "Bert Jacobson Tour",
                    "performer": {
                        "id": 64,
                        "name": "Bert Jacobson",
                        "link": "http://eventzu.no/api/performers/64"
                    },
                    "start_date": "2023-04-30T23:00:00.000000Z",
                    "end_date": "2023-05-18T09:44:16.000000Z",
                    "image": "https://via.placeholder.com/640x480.png/00ee33?text=fugit",
                    "link": "http://eventzu.no/api/tours/1"
                },
                "media": [],
                "social_links": [],
                "status": "cancelled"
            },
            {
                "id": 16,
                "name": "Est est itaque voluptates.",
                "start_date": "2023-06-11T06:00:00.000000Z",
                "end_date": "2023-06-11T18:00:00.000000Z",
                "description": "In modi et facere architecto deserunt omnis et. Non odit deserunt pariatur. Magnam repellat pariatur possimus vel repellat blanditiis ipsum magnam. Iure sequi quidem beatae sunt.",
                "location": "Turks and Caicos Islands, Hartmannview",
                "timeline": "upcoming",
                "time_until": "In 3 weeks",
                "event_type": "physical",
                "genres": [
                    "House",
                    "Folk"
                ],
                "image": "https://via.placeholder.com/640x480.png/0044ee?text=laborum",
                "venues": [
                    {
                        "id": 21,
                        "name": "Kuvalis-Dietrich Hall",
                        "country": "Turks and Caicos Islands",
                        "region": "Hawaii",
                        "city": "Hartmannview",
                        "address": "72011 Myah Vista\nHauckberg, VA 30058, Hartmannview, Hawaii, Turks and Caicos Islands",
                        "geo": {
                            "lat": "-45.953960000",
                            "lng": "152.596685000"
                        },
                        "image": "https://via.placeholder.com/640x480.png/009955?text=et",
                        "link": "http://eventzu.no/api/venues/21"
                    }
                ],
                "performers": [
                    {
                        "id": 81,
                        "name": "Jeanie Collier",
                        "role": "headliner",
                        "image": "https://via.placeholder.com/640x480.png/000044?text=amet",
                        "bio": "Officia nam ratione reprehenderit maiores. Quia odio eveniet excepturi cupiditate quod dolorem omnis. Voluptatem nostrum qui at at molestias distinctio.",
                        "link": "http://eventzu.no/api/performers/81"
                    },
                    {
                        "id": 82,
                        "name": "Sheldon Grady",
                        "role": "support",
                        "image": "https://via.placeholder.com/640x480.png/0088dd?text=voluptate",
                        "bio": "Itaque rerum et laboriosam qui voluptatem. Ipsa beatae et eos sequi quo.",
                        "link": "http://eventzu.no/api/performers/82"
                    },
                    {
                        "id": 64,
                        "name": "Bert Jacobson",
                        "role": "headliner",
                        "image": "https://via.placeholder.com/640x480.png/0066dd?text=sit",
                        "bio": "Et quis ab deserunt beatae et molestiae. Porro quia incidunt iste odio. Aut perferendis voluptate voluptatem impedit tenetur.",
                        "link": "http://eventzu.no/api/performers/64"
                    }
                ],
                "tickets": [
                    {
                        "name": "deleniti",
                        "type": "door",
                        "price": 99734,
                        "currency": "CHF",
                        "available_from": "2023-06-29 01:00:00",
                        "available_until": "2023-06-30 06:00:00",
                        "source_url": "http://www.keebler.net/dolorem-et-explicabo-voluptatum",
                        "ticketor": {
                            "id": 4,
                            "name": "Balistreri-Gusikowski Tixs",
                            "link": "http://eventzu.no/api/ticketors/4"
                        }
                    }
                ],
                "promoters": [],
                "tour": {
                    "id": 1,
                    "name": "Bert Jacobson Tour",
                    "performer": {
                        "id": 64,
                        "name": "Bert Jacobson",
                        "link": "http://eventzu.no/api/performers/64"
                    },
                    "start_date": "2023-04-30T23:00:00.000000Z",
                    "end_date": "2023-05-18T09:44:16.000000Z",
                    "image": "https://via.placeholder.com/640x480.png/00ee33?text=fugit",
                    "link": "http://eventzu.no/api/tours/1"
                },
                "media": [],
                "social_links": [],
                "status": "postponed"
            },
            {
                "id": 17,
                "name": "Voluptate nihil iusto ea.",
                "start_date": "2023-04-16T15:00:00.000000Z",
                "end_date": "2023-04-17T21:00:00.000000Z",
                "description": "Rerum facere qui voluptas quia. Ut porro ut voluptatem error. Qui velit id molestiae sequi. Labore commodi quam non omnis.",
                "location": "Luxembourg, Lake Santina",
                "timeline": "past",
                "time_until": "1 month ago",
                "event_type": "concert",
                "genres": [
                    "Pop",
                    "Piano"
                ],
                "image": "https://via.placeholder.com/640x480.png/004433?text=sint",
                "venues": [
                    {
                        "id": 22,
                        "name": "Brakus-Legros Arena",
                        "country": "Luxembourg",
                        "region": "Kentucky",
                        "city": "Lake Santina",
                        "address": "129 Ernser Common Suite 674\nHauckside, ID 98201, Lake Santina, Kentucky, Luxembourg",
                        "geo": {
                            "lat": "1.672509000",
                            "lng": "-109.938697000"
                        },
                        "image": "https://via.placeholder.com/640x480.png/00cc99?text=dicta",
                        "link": "http://eventzu.no/api/venues/22"
                    }
                ],
                "performers": [
                    {
                        "id": 83,
                        "name": "Jada Macejkovic",
                        "role": "headliner",
                        "image": "https://via.placeholder.com/640x480.png/0055cc?text=beatae",
                        "bio": "Minus aliquam aspernatur ipsum blanditiis. Debitis dolorum eius molestiae. Non earum quidem molestiae quis. Velit ut praesentium saepe.",
                        "link": "http://eventzu.no/api/performers/83"
                    },
                    {
                        "id": 84,
                        "name": "Ernest Abernathy",
                        "role": "headliner",
                        "image": "https://via.placeholder.com/640x480.png/00eeff?text=fugiat",
                        "bio": "Ipsum deserunt vitae rerum aut explicabo magni. Inventore quo odio consequatur eos aut rerum eos. Sit rerum ipsa at nulla.",
                        "link": "http://eventzu.no/api/performers/84"
                    },
                    {
                        "id": 64,
                        "name": "Bert Jacobson",
                        "role": "support",
                        "image": "https://via.placeholder.com/640x480.png/0066dd?text=sit",
                        "bio": "Et quis ab deserunt beatae et molestiae. Porro quia incidunt iste odio. Aut perferendis voluptate voluptatem impedit tenetur.",
                        "link": "http://eventzu.no/api/performers/64"
                    }
                ],
                "tickets": [
                    {
                        "name": "tempora",
                        "type": "vip",
                        "price": 42908,
                        "currency": "DKK",
                        "available_from": "2023-04-17 14:00:00",
                        "available_until": "2023-04-18 14:00:00",
                        "source_url": "http://www.dach.org/facilis-nihil-illum-ea-optio-ea-ad-tempore",
                        "ticketor": {
                            "id": 4,
                            "name": "Balistreri-Gusikowski Tixs",
                            "link": "http://eventzu.no/api/ticketors/4"
                        }
                    }
                ],
                "promoters": [],
                "tour": {
                    "id": 1,
                    "name": "Bert Jacobson Tour",
                    "performer": {
                        "id": 64,
                        "name": "Bert Jacobson",
                        "link": "http://eventzu.no/api/performers/64"
                    },
                    "start_date": "2023-04-30T23:00:00.000000Z",
                    "end_date": "2023-05-18T09:44:16.000000Z",
                    "image": "https://via.placeholder.com/640x480.png/00ee33?text=fugit",
                    "link": "http://eventzu.no/api/tours/1"
                },
                "media": [],
                "social_links": [],
                "status": "postponed"
            }
        ],
        "media": [
            {
                "media_type": "music",
                "file_url": "https://via.placeholder.com/640x480.png/004488?text=assumenda",
                "caption": "Voluptatum laboriosam et alias sed eos vitae est."
            },
            {
                "media_type": "music",
                "file_url": "https://via.placeholder.com/640x480.png/001199?text=minima",
                "caption": "Sint eligendi numquam ad ea."
            },
            {
                "media_type": "music",
                "file_url": "https://via.placeholder.com/640x480.png/00ffff?text=quasi",
                "caption": "Inventore velit quam a ex accusamus aut nihil esse."
            }
        ],
        "social_links": [
            {
                "platform": "Facebook",
                "url": "https://www.facebook.com/skemmer"
            },
            {
                "platform": "Facebook",
                "url": "https://www.facebook.com/rachel.okon"
            }
        ]
    }
}
 

Request      

GET api/tours/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the tour. Example: 1

Tour Events

Show a list of events related to the specified tour resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/tours/1/events" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/tours/1/events"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/tours/1/events',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 52
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 18,
            "name": "Explicabo odit tenetur aut.",
            "start_date": "2023-07-02T21:00:00.000000Z",
            "end_date": "2023-07-04T12:00:00.000000Z",
            "location": "Haiti, Hudsontown",
            "timeline": "upcoming",
            "time_until": "In 1 month",
            "event_type": "theater",
            "genres": [
                "Comedy",
                "Latin"
            ],
            "image": "https://via.placeholder.com/640x480.png/0033ff?text=distinctio",
            "venues": [
                {
                    "id": 23,
                    "name": "Kris and Sons Arena",
                    "country": "Haiti",
                    "city": "Hudsontown",
                    "geo": {
                        "lat": "-25.713651000",
                        "lng": "37.306272000"
                    },
                    "link": "http://eventzu.no/api/venues/23"
                }
            ],
            "performers": [
                {
                    "id": 85,
                    "name": "Mr. Boris Auer",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/85"
                },
                {
                    "id": 86,
                    "name": "Prof. Brandi Sanford V",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/86"
                },
                {
                    "id": 64,
                    "name": "Bert Jacobson",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/64"
                }
            ],
            "tickets": [
                {
                    "name": "nam",
                    "type": "discount_list",
                    "price": 62,
                    "currency": "BBD"
                }
            ],
            "promoters": [],
            "tour": {
                "id": 1,
                "name": "Bert Jacobson Tour",
                "performer": {
                    "id": 64,
                    "name": "Bert Jacobson",
                    "link": "http://eventzu.no/api/performers/64"
                },
                "link": "http://eventzu.no/api/tours/1"
            },
            "link": "http://eventzu.no/api/events/18",
            "status": "cancelled"
        },
        {
            "id": 16,
            "name": "Est est itaque voluptates.",
            "start_date": "2023-06-11T06:00:00.000000Z",
            "end_date": "2023-06-11T18:00:00.000000Z",
            "location": "Turks and Caicos Islands, Hartmannview",
            "timeline": "upcoming",
            "time_until": "In 3 weeks",
            "event_type": "physical",
            "genres": [
                "House",
                "Folk"
            ],
            "image": "https://via.placeholder.com/640x480.png/0044ee?text=laborum",
            "venues": [
                {
                    "id": 21,
                    "name": "Kuvalis-Dietrich Hall",
                    "country": "Turks and Caicos Islands",
                    "city": "Hartmannview",
                    "geo": {
                        "lat": "-45.953960000",
                        "lng": "152.596685000"
                    },
                    "link": "http://eventzu.no/api/venues/21"
                }
            ],
            "performers": [
                {
                    "id": 81,
                    "name": "Jeanie Collier",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/81"
                },
                {
                    "id": 82,
                    "name": "Sheldon Grady",
                    "role": "support",
                    "link": "http://eventzu.no/api/performers/82"
                },
                {
                    "id": 64,
                    "name": "Bert Jacobson",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/64"
                }
            ],
            "tickets": [
                {
                    "name": "deleniti",
                    "type": "door",
                    "price": 99734,
                    "currency": "CHF"
                }
            ],
            "promoters": [],
            "tour": {
                "id": 1,
                "name": "Bert Jacobson Tour",
                "performer": {
                    "id": 64,
                    "name": "Bert Jacobson",
                    "link": "http://eventzu.no/api/performers/64"
                },
                "link": "http://eventzu.no/api/tours/1"
            },
            "link": "http://eventzu.no/api/events/16",
            "status": "postponed"
        }
    ],
    "links": {
        "first": "http://localhost/api/tours/1/events?page=1",
        "last": "http://localhost/api/tours/1/events?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/tours/1/events?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/tours/1/events",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/tours/{tour_id}/events

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

tour_id   integer   

The ID of the tour. Example: 1

Body Parameters

timeline   string  optional  

Filter with events in timeline, defaults to upcoming. Must be one of upcoming, ongoing, or past.

date_after   string  optional  

Filter with events after this date. Must be a valid date.

date_before   string  optional  

Filter with events before this date. Must be a valid date.

Performers List

Show a list of performers

Example request:
curl --request GET \
    --get "https://eventzu.no/api/performers" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/performers"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/performers',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 51
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "name": "Rebekah Beahan",
            "performer_type": "Model",
            "genres": [
                "Electronic",
                "HardStyle"
            ],
            "image": "https://via.placeholder.com/640x480.png/00dd11?text=quae",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "link": "http://eventzu.no/api/performers/1"
        },
        {
            "id": 2,
            "name": "Zoie Goodwin Jr.",
            "performer_type": "MC",
            "genres": [
                "Trance",
                "Hip Hop"
            ],
            "image": "https://via.placeholder.com/640x480.png/00aa66?text=voluptates",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "link": "http://eventzu.no/api/performers/2"
        },
        {
            "id": 3,
            "name": "Billie Bogan",
            "performer_type": "Model",
            "genres": [
                "EDM",
                "Hip Hop"
            ],
            "image": "https://via.placeholder.com/640x480.png/006666?text=velit",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "link": "http://eventzu.no/api/performers/3"
        },
        {
            "id": 4,
            "name": "Kyla Kuhic",
            "performer_type": "Dance",
            "genres": [
                "Soul",
                "Live"
            ],
            "image": "https://via.placeholder.com/640x480.png/00ddff?text=doloribus",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "link": "http://eventzu.no/api/performers/4"
        },
        {
            "id": 5,
            "name": "Garth Huel",
            "performer_type": "Photographer",
            "genres": [
                "Soul",
                "Gaming"
            ],
            "image": "https://via.placeholder.com/640x480.png/000099?text=unde",
            "upcoming_event_count": 1,
            "upcoming_events": [
                {
                    "id": 29,
                    "name": "Porro numquam reiciendis ipsam.",
                    "start_date": "2023-05-24T14:00:00.000000Z",
                    "location": "Luxembourg, Port Keeleystad",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 34,
                            "name": "Botsford-Mohr Center",
                            "country": "Luxembourg",
                            "city": "Port Keeleystad",
                            "geo": {
                                "lat": "22.530658000",
                                "lng": "-107.428626000"
                            },
                            "link": "http://eventzu.no/api/venues/34"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/29",
                    "status": "published"
                }
            ],
            "link": "http://eventzu.no/api/performers/5"
        },
        {
            "id": 6,
            "name": "Dr. Lilla Sipes IV",
            "performer_type": "Model",
            "genres": [
                "Disco",
                "Alternative"
            ],
            "image": "https://via.placeholder.com/640x480.png/00bbdd?text=dolore",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "link": "http://eventzu.no/api/performers/6"
        },
        {
            "id": 7,
            "name": "Jordan Kuhic",
            "performer_type": "Comedian",
            "genres": [
                "Dub",
                "Alternative"
            ],
            "image": "https://via.placeholder.com/640x480.png/0033ff?text=iure",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "link": "http://eventzu.no/api/performers/7"
        },
        {
            "id": 8,
            "name": "Mrs. Talia Kihn",
            "performer_type": "Band",
            "genres": [
                "Blues",
                "Gaming"
            ],
            "image": "https://via.placeholder.com/640x480.png/0066bb?text=doloribus",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "link": "http://eventzu.no/api/performers/8"
        },
        {
            "id": 9,
            "name": "Icie Weber",
            "performer_type": "DJ",
            "genres": [
                "R&B",
                "Blues"
            ],
            "image": "https://via.placeholder.com/640x480.png/00aadd?text=sit",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "link": "http://eventzu.no/api/performers/9"
        },
        {
            "id": 10,
            "name": "Armand Rosenbaum V",
            "performer_type": "Band",
            "genres": [
                "HardStyle",
                "Other"
            ],
            "image": "https://via.placeholder.com/640x480.png/00ccff?text=aut",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "link": "http://eventzu.no/api/performers/10"
        }
    ],
    "links": {
        "first": "http://localhost/api/performers?page=1",
        "last": "http://localhost/api/performers?page=12",
        "prev": null,
        "next": "http://localhost/api/performers?page=2"
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 12,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": "http://localhost/api/performers?page=2",
                "label": "2",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=3",
                "label": "3",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=4",
                "label": "4",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=5",
                "label": "5",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=6",
                "label": "6",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=7",
                "label": "7",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=8",
                "label": "8",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=9",
                "label": "9",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=10",
                "label": "10",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=11",
                "label": "11",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=12",
                "label": "12",
                "active": false
            },
            {
                "url": "http://localhost/api/performers?page=2",
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/performers",
        "per_page": 10,
        "to": 10,
        "total": 112
    }
}
 

Request      

GET api/performers

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

search   string  optional  

Search by name.

performer_type   string  optional  

Performer type name search.

genre   string  optional  

Genre name search.

location   string  optional  

Location name search, country, region or city.

timeline   string  optional  

Filter with events in timeline, defaults to upcoming. Must be one of upcoming, ongoing, or past.

date_after   string  optional  

Filter with events after this date. Must be a valid date.

date_before   string  optional  

Filter with events before this date. Must be a valid date.

Performers Item

Display the specified performers resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/performers/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/performers/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/performers/1',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 50
access-control-allow-origin: *
 

{
    "data": {
        "id": 1,
        "name": "Rebekah Beahan",
        "description": null,
        "website": "http://www.lebsack.biz/praesentium-incidunt-architecto-aut-accusamus-est-itaque",
        "performer_type": "Model",
        "genres": [
            "Electronic",
            "HardStyle"
        ],
        "image": "https://via.placeholder.com/640x480.png/00dd11?text=quae",
        "upcoming_event_count": 0,
        "upcoming_events": [],
        "event_count": 0,
        "management_orgs": [],
        "agents": [],
        "labels": [],
        "media": [
            {
                "media_type": "music",
                "file_url": "https://via.placeholder.com/640x480.png/00dd88?text=sed",
                "caption": "Illum modi ea sed aut accusamus id quae."
            },
            {
                "media_type": "music",
                "file_url": "https://via.placeholder.com/640x480.png/00aacc?text=quo",
                "caption": "Consequatur quisquam ut odit enim."
            },
            {
                "media_type": "music",
                "file_url": "https://via.placeholder.com/640x480.png/003366?text=voluptatem",
                "caption": "Molestias iure voluptas et incidunt natus consequatur culpa itaque."
            }
        ],
        "social_links": [
            {
                "platform": "YouTube",
                "url": "https://www.youtube.com/user/lennie73"
            },
            {
                "platform": "YouTube",
                "url": "https://www.youtube.com/user/upurdy"
            }
        ]
    }
}
 

Request      

GET api/performers/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the performer. Example: 1

Performer Events

Show a list of events related to the specified performer resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/performers/1/events" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/performers/1/events"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/performers/1/events',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 49
access-control-allow-origin: *
 

{
    "data": [],
    "links": {
        "first": "http://localhost/api/performers/1/events?page=1",
        "last": "http://localhost/api/performers/1/events?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": null,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/performers/1/events?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/performers/1/events",
        "per_page": 10,
        "to": null,
        "total": 0
    }
}
 

Request      

GET api/performers/{tour_id}/events

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

tour_id   integer   

The ID of the tour. Example: 1

Body Parameters

timeline   string  optional  

Filter with events in timeline, defaults to upcoming. Must be one of upcoming, ongoing, or past.

date_after   string  optional  

Filter with events after this date. Must be a valid date.

date_before   string  optional  

Filter with events before this date. Must be a valid date.

Promoters List

Show a list of promoters

Example request:
curl --request GET \
    --get "https://eventzu.no/api/promoters" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/promoters"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/promoters',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 48
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "name": "Rutherford Group",
            "image": "https://via.placeholder.com/640x480.png/0000ff?text=qui",
            "upcoming_events": [],
            "link": "http://eventzu.no/api/promoters/1"
        },
        {
            "id": 2,
            "name": "Padberg and Sons",
            "image": "https://via.placeholder.com/640x480.png/00aa11?text=at",
            "upcoming_events": [
                {
                    "id": 9,
                    "name": "Incidunt incidunt distinctio.",
                    "start_date": "2023-06-02T23:00:00.000000Z",
                    "location": "Bangladesh, Port Darron",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 14,
                            "name": "Langosh, Walsh and Predovic Hall",
                            "country": "Bangladesh",
                            "city": "Port Darron",
                            "geo": {
                                "lat": "-79.986665000",
                                "lng": "-157.394342000"
                            },
                            "link": "http://eventzu.no/api/venues/14"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/9",
                    "status": "postponed"
                }
            ],
            "link": "http://eventzu.no/api/promoters/2"
        },
        {
            "id": 3,
            "name": "Deckow, Crona and Williamson",
            "image": "https://via.placeholder.com/640x480.png/00aa22?text=pariatur",
            "upcoming_events": [
                {
                    "id": 10,
                    "name": "Tempora placeat consequatur rerum.",
                    "start_date": "2023-06-19T15:00:00.000000Z",
                    "location": "Barbados, New Karianeview",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 15,
                            "name": "Mraz-Quigley Stadium",
                            "country": "Barbados",
                            "city": "New Karianeview",
                            "geo": {
                                "lat": "43.008488000",
                                "lng": "38.041317000"
                            },
                            "link": "http://eventzu.no/api/venues/15"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/10",
                    "status": "published"
                }
            ],
            "link": "http://eventzu.no/api/promoters/3"
        },
        {
            "id": 4,
            "name": "Stark Ltd",
            "image": "https://via.placeholder.com/640x480.png/0099dd?text=facilis",
            "upcoming_events": [
                {
                    "id": 12,
                    "name": "Quisquam recusandae quo ea.",
                    "start_date": "2023-05-23T23:00:00.000000Z",
                    "location": "Saint Kitts and Nevis, Port Elvaville",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 17,
                            "name": "Zemlak-Rice Arena",
                            "country": "Saint Kitts and Nevis",
                            "city": "Port Elvaville",
                            "geo": {
                                "lat": "4.999660000",
                                "lng": "169.645521000"
                            },
                            "link": "http://eventzu.no/api/venues/17"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/12",
                    "status": "cancelled"
                },
                {
                    "id": 29,
                    "name": "Porro numquam reiciendis ipsam.",
                    "start_date": "2023-05-24T14:00:00.000000Z",
                    "location": "Luxembourg, Port Keeleystad",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 34,
                            "name": "Botsford-Mohr Center",
                            "country": "Luxembourg",
                            "city": "Port Keeleystad",
                            "geo": {
                                "lat": "22.530658000",
                                "lng": "-107.428626000"
                            },
                            "link": "http://eventzu.no/api/venues/34"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/29",
                    "status": "published"
                }
            ],
            "link": "http://eventzu.no/api/promoters/4"
        },
        {
            "id": 5,
            "name": "Kris, Kessler and Casper",
            "image": "https://via.placeholder.com/640x480.png/007722?text=qui",
            "upcoming_events": [
                {
                    "id": 14,
                    "name": "Sint ab hic earum.",
                    "start_date": "2023-06-19T10:00:00.000000Z",
                    "location": "Mauritania, Sheaville",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 19,
                            "name": "Kulas-Bauch Stadium",
                            "country": "Mauritania",
                            "city": "Sheaville",
                            "geo": {
                                "lat": "-37.980315000",
                                "lng": "-107.819678000"
                            },
                            "link": "http://eventzu.no/api/venues/19"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/14",
                    "status": "postponed"
                }
            ],
            "link": "http://eventzu.no/api/promoters/5"
        },
        {
            "id": 6,
            "name": "xzccxzc",
            "image": null,
            "upcoming_events": [],
            "link": "http://eventzu.no/api/promoters/6"
        }
    ],
    "links": {
        "first": "http://localhost/api/promoters?page=1",
        "last": "http://localhost/api/promoters?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/promoters?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/promoters",
        "per_page": 10,
        "to": 6,
        "total": 6
    }
}
 

Request      

GET api/promoters

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

search   string  optional  

Search by name.

location   string  optional  

Location name search, country, region or city.

timeline   string  optional  

Filter with events in timeline, defaults to upcoming. Must be one of upcoming, ongoing, or past.

date_after   string  optional  

Filter with events after this date. Must be a valid date.

date_before   string  optional  

Filter with events before this date. Must be a valid date.

Promoters Item

Display the specified promoters resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/promoters/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/promoters/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/promoters/1',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 47
access-control-allow-origin: *
 

{
    "data": {
        "id": 1,
        "name": "Rutherford Group",
        "bio": null,
        "website": "http://smitham.biz/",
        "image": "https://via.placeholder.com/640x480.png/0000ff?text=qui",
        "upcoming_events": [],
        "event_count": 1,
        "media": [
            {
                "media_type": "music",
                "file_url": "https://via.placeholder.com/640x480.png/00eedd?text=ut",
                "caption": "Ut ex quo qui deleniti cumque sed."
            },
            {
                "media_type": "video",
                "file_url": "https://via.placeholder.com/640x480.png/00bbdd?text=ut",
                "caption": "Laborum qui quasi ea libero suscipit."
            },
            {
                "media_type": "video",
                "file_url": "https://via.placeholder.com/640x480.png/006633?text=ut",
                "caption": "Aut earum ut nobis et quis quis."
            }
        ],
        "social_links": [
            {
                "platform": "YouTube",
                "url": "https://www.youtube.com/user/morissette.jean"
            },
            {
                "platform": "YouTube",
                "url": "https://www.youtube.com/user/cormier.sebastian"
            }
        ]
    }
}
 

Request      

GET api/promoters/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the promoter. Example: 1

Promoter Events

Show a list of events related to the specified promoter resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/promoters/1/events" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/promoters/1/events"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/promoters/1/events',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 46
access-control-allow-origin: *
 

{
    "data": [],
    "links": {
        "first": "http://localhost/api/promoters/1/events?page=1",
        "last": "http://localhost/api/promoters/1/events?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": null,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/promoters/1/events?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/promoters/1/events",
        "per_page": 10,
        "to": null,
        "total": 0
    }
}
 

Request      

GET api/promoters/{promoter_id}/events

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

promoter_id   integer   

The ID of the promoter. Example: 1

Body Parameters

timeline   string  optional  

Filter with events in timeline, defaults to upcoming. Must be one of upcoming, ongoing, or past.

date_after   string  optional  

Filter with events after this date. Must be a valid date.

date_before   string  optional  

Filter with events before this date. Must be a valid date.

Ticketors List

Show a list of ticketors

Example request:
curl --request GET \
    --get "https://eventzu.no/api/ticketors" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/ticketors"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/ticketors',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 45
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "name": "Rempel, Bahringer and Cruickshank Tixs",
            "upcoming_events": [
                {
                    "id": 1,
                    "name": "Qui voluptatem accusamus.",
                    "start_date": "2023-05-26T15:00:00.000000Z",
                    "location": "Jordan, Port Federicomouth",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 6,
                            "name": "Wuckert Ltd Hall",
                            "country": "Jordan",
                            "city": "Port Federicomouth",
                            "geo": {
                                "lat": "-30.976009000",
                                "lng": "-149.790341000"
                            },
                            "link": "http://eventzu.no/api/venues/6"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/1",
                    "status": "postponed"
                },
                {
                    "id": 3,
                    "name": "Et placeat atque rerum.",
                    "start_date": "2023-06-26T23:00:00.000000Z",
                    "location": "Norfolk Island, Kleinbury",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 8,
                            "name": "Spencer-Wisozk Stadium",
                            "country": "Norfolk Island",
                            "city": "Kleinbury",
                            "geo": {
                                "lat": "-19.811104000",
                                "lng": "-18.445472000"
                            },
                            "link": "http://eventzu.no/api/venues/8"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/3",
                    "status": "published"
                },
                {
                    "id": 4,
                    "name": "Autem consequuntur magnam explicabo aut.",
                    "start_date": "2023-06-12T15:00:00.000000Z",
                    "location": "Belarus, Port Sambury",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 9,
                            "name": "Mertz-Roberts Stadium",
                            "country": "Belarus",
                            "city": "Port Sambury",
                            "geo": {
                                "lat": "53.374067000",
                                "lng": "-179.607199000"
                            },
                            "link": "http://eventzu.no/api/venues/9"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/4",
                    "status": "published"
                },
                {
                    "id": 19,
                    "name": "Asperiores excepturi dignissimos ut soluta.",
                    "start_date": "2023-06-22T12:00:00.000000Z",
                    "location": "Maldives, Rutherfordfort",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 24,
                            "name": "Eichmann, Lind and Grimes Center",
                            "country": "Maldives",
                            "city": "Rutherfordfort",
                            "geo": {
                                "lat": "70.563945000",
                                "lng": "-90.327374000"
                            },
                            "link": "http://eventzu.no/api/venues/24"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/19",
                    "status": "postponed"
                },
                {
                    "id": 26,
                    "name": "Molestias eos.",
                    "start_date": "2023-06-10T12:00:00.000000Z",
                    "location": "Iceland, Lake Melbaborough",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 31,
                            "name": "Torp, Weimann and Kulas Arena",
                            "country": "Iceland",
                            "city": "Lake Melbaborough",
                            "geo": {
                                "lat": "50.424273000",
                                "lng": "-57.850447000"
                            },
                            "link": "http://eventzu.no/api/venues/31"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/26",
                    "status": "postponed"
                }
            ],
            "link": "http://eventzu.no/api/ticketors/1"
        },
        {
            "id": 2,
            "name": "Romaguera Inc Tixs",
            "upcoming_events": [
                {
                    "id": 1,
                    "name": "Qui voluptatem accusamus.",
                    "start_date": "2023-05-26T15:00:00.000000Z",
                    "location": "Jordan, Port Federicomouth",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 6,
                            "name": "Wuckert Ltd Hall",
                            "country": "Jordan",
                            "city": "Port Federicomouth",
                            "geo": {
                                "lat": "-30.976009000",
                                "lng": "-149.790341000"
                            },
                            "link": "http://eventzu.no/api/venues/6"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/1",
                    "status": "postponed"
                },
                {
                    "id": 9,
                    "name": "Incidunt incidunt distinctio.",
                    "start_date": "2023-06-02T23:00:00.000000Z",
                    "location": "Bangladesh, Port Darron",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 14,
                            "name": "Langosh, Walsh and Predovic Hall",
                            "country": "Bangladesh",
                            "city": "Port Darron",
                            "geo": {
                                "lat": "-79.986665000",
                                "lng": "-157.394342000"
                            },
                            "link": "http://eventzu.no/api/venues/14"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/9",
                    "status": "postponed"
                },
                {
                    "id": 12,
                    "name": "Quisquam recusandae quo ea.",
                    "start_date": "2023-05-23T23:00:00.000000Z",
                    "location": "Saint Kitts and Nevis, Port Elvaville",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 17,
                            "name": "Zemlak-Rice Arena",
                            "country": "Saint Kitts and Nevis",
                            "city": "Port Elvaville",
                            "geo": {
                                "lat": "4.999660000",
                                "lng": "169.645521000"
                            },
                            "link": "http://eventzu.no/api/venues/17"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/12",
                    "status": "cancelled"
                },
                {
                    "id": 18,
                    "name": "Explicabo odit tenetur aut.",
                    "start_date": "2023-07-02T21:00:00.000000Z",
                    "location": "Haiti, Hudsontown",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 23,
                            "name": "Kris and Sons Arena",
                            "country": "Haiti",
                            "city": "Hudsontown",
                            "geo": {
                                "lat": "-25.713651000",
                                "lng": "37.306272000"
                            },
                            "link": "http://eventzu.no/api/venues/23"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/18",
                    "status": "cancelled"
                },
                {
                    "id": 20,
                    "name": "Amet omnis aut rem.",
                    "start_date": "2023-06-12T21:00:00.000000Z",
                    "location": "Marshall Islands, McDermottville",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 25,
                            "name": "Ankunding-Collins Stadium",
                            "country": "Marshall Islands",
                            "city": "McDermottville",
                            "geo": {
                                "lat": "-88.943586000",
                                "lng": "21.912333000"
                            },
                            "link": "http://eventzu.no/api/venues/25"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/20",
                    "status": "published"
                },
                {
                    "id": 22,
                    "name": "Natus et labore.",
                    "start_date": "2023-05-22T07:00:00.000000Z",
                    "location": "Montenegro, Abernathyport",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 27,
                            "name": "Ortiz PLC Center",
                            "country": "Montenegro",
                            "city": "Abernathyport",
                            "geo": {
                                "lat": "74.459004000",
                                "lng": "-17.965514000"
                            },
                            "link": "http://eventzu.no/api/venues/27"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/22",
                    "status": "postponed"
                }
            ],
            "link": "http://eventzu.no/api/ticketors/2"
        },
        {
            "id": 3,
            "name": "Goyette PLC Tixs",
            "upcoming_events": [
                {
                    "id": 3,
                    "name": "Et placeat atque rerum.",
                    "start_date": "2023-06-26T23:00:00.000000Z",
                    "location": "Norfolk Island, Kleinbury",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 8,
                            "name": "Spencer-Wisozk Stadium",
                            "country": "Norfolk Island",
                            "city": "Kleinbury",
                            "geo": {
                                "lat": "-19.811104000",
                                "lng": "-18.445472000"
                            },
                            "link": "http://eventzu.no/api/venues/8"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/3",
                    "status": "published"
                }
            ],
            "link": "http://eventzu.no/api/ticketors/3"
        },
        {
            "id": 4,
            "name": "Balistreri-Gusikowski Tixs",
            "upcoming_events": [
                {
                    "id": 4,
                    "name": "Autem consequuntur magnam explicabo aut.",
                    "start_date": "2023-06-12T15:00:00.000000Z",
                    "location": "Belarus, Port Sambury",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 9,
                            "name": "Mertz-Roberts Stadium",
                            "country": "Belarus",
                            "city": "Port Sambury",
                            "geo": {
                                "lat": "53.374067000",
                                "lng": "-179.607199000"
                            },
                            "link": "http://eventzu.no/api/venues/9"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/4",
                    "status": "published"
                },
                {
                    "id": 14,
                    "name": "Sint ab hic earum.",
                    "start_date": "2023-06-19T10:00:00.000000Z",
                    "location": "Mauritania, Sheaville",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 19,
                            "name": "Kulas-Bauch Stadium",
                            "country": "Mauritania",
                            "city": "Sheaville",
                            "geo": {
                                "lat": "-37.980315000",
                                "lng": "-107.819678000"
                            },
                            "link": "http://eventzu.no/api/venues/19"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/14",
                    "status": "postponed"
                },
                {
                    "id": 16,
                    "name": "Est est itaque voluptates.",
                    "start_date": "2023-06-11T06:00:00.000000Z",
                    "location": "Turks and Caicos Islands, Hartmannview",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 21,
                            "name": "Kuvalis-Dietrich Hall",
                            "country": "Turks and Caicos Islands",
                            "city": "Hartmannview",
                            "geo": {
                                "lat": "-45.953960000",
                                "lng": "152.596685000"
                            },
                            "link": "http://eventzu.no/api/venues/21"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/16",
                    "status": "postponed"
                },
                {
                    "id": 27,
                    "name": "Reprehenderit pariatur.",
                    "start_date": "2023-06-27T15:00:00.000000Z",
                    "location": "Antigua and Barbuda, West Alexandra",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 32,
                            "name": "Treutel-Gottlieb Stadium",
                            "country": "Antigua and Barbuda",
                            "city": "West Alexandra",
                            "geo": {
                                "lat": "-35.417420000",
                                "lng": "-91.941129000"
                            },
                            "link": "http://eventzu.no/api/venues/32"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/27",
                    "status": "published"
                },
                {
                    "id": 29,
                    "name": "Porro numquam reiciendis ipsam.",
                    "start_date": "2023-05-24T14:00:00.000000Z",
                    "location": "Luxembourg, Port Keeleystad",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 34,
                            "name": "Botsford-Mohr Center",
                            "country": "Luxembourg",
                            "city": "Port Keeleystad",
                            "geo": {
                                "lat": "22.530658000",
                                "lng": "-107.428626000"
                            },
                            "link": "http://eventzu.no/api/venues/34"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/29",
                    "status": "published"
                }
            ],
            "link": "http://eventzu.no/api/ticketors/4"
        },
        {
            "id": 5,
            "name": "Frami-Metz Tixs",
            "upcoming_events": [
                {
                    "id": 10,
                    "name": "Tempora placeat consequatur rerum.",
                    "start_date": "2023-06-19T15:00:00.000000Z",
                    "location": "Barbados, New Karianeview",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 15,
                            "name": "Mraz-Quigley Stadium",
                            "country": "Barbados",
                            "city": "New Karianeview",
                            "geo": {
                                "lat": "43.008488000",
                                "lng": "38.041317000"
                            },
                            "link": "http://eventzu.no/api/venues/15"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/10",
                    "status": "published"
                },
                {
                    "id": 21,
                    "name": "Tempore qui ut odio.",
                    "start_date": "2023-06-22T19:00:00.000000Z",
                    "location": "Greenland, Wintheiserside",
                    "timeline": "upcoming",
                    "venues": [
                        {
                            "id": 26,
                            "name": "Champlin-O'Hara Hall",
                            "country": "Greenland",
                            "city": "Wintheiserside",
                            "geo": {
                                "lat": "11.977596000",
                                "lng": "-159.209010000"
                            },
                            "link": "http://eventzu.no/api/venues/26"
                        }
                    ],
                    "link": "http://eventzu.no/api/events/21",
                    "status": "cancelled"
                }
            ],
            "link": "http://eventzu.no/api/ticketors/5"
        },
        {
            "id": 6,
            "name": "Eplus",
            "upcoming_events": [],
            "link": "http://eventzu.no/api/ticketors/6"
        }
    ],
    "links": {
        "first": "http://localhost/api/ticketors?page=1",
        "last": "http://localhost/api/ticketors?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/ticketors?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/ticketors",
        "per_page": 10,
        "to": 6,
        "total": 6
    }
}
 

Request      

GET api/ticketors

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

search   string  optional  

Search by name.

location   string  optional  

Location name search, country, region or city.

timeline   string  optional  

Filter with events in timeline, defaults to upcoming. Must be one of upcoming, ongoing, or past.

date_after   string  optional  

Filter with events after this date. Must be a valid date.

date_before   string  optional  

Filter with events before this date. Must be a valid date.

Ticketors Item

Display the specified ticketors resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/ticketors/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/ticketors/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/ticketors/1',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 44
access-control-allow-origin: *
 

{
    "data": {
        "id": 1,
        "name": "Rempel, Bahringer and Cruickshank Tixs",
        "website": "https://www.koch.com/temporibus-in-quod-tenetur-dignissimos-voluptatem-mollitia-illum",
        "upcoming_events": [
            {
                "id": 1,
                "name": "Qui voluptatem accusamus.",
                "start_date": "2023-05-26T15:00:00.000000Z",
                "end_date": "2023-05-27T23:00:00.000000Z",
                "description": "Totam perspiciatis rem ex tenetur id. Aut debitis corrupti quo quibusdam illo omnis animi. Culpa maxime laborum aliquam consequatur culpa id. Laborum et quibusdam qui unde id ut et.",
                "location": "Jordan, Port Federicomouth",
                "timeline": "upcoming",
                "time_until": "In 5 days",
                "event_type": "theater",
                "genres": [
                    "Pop",
                    "Folk"
                ],
                "image": "https://via.placeholder.com/640x480.png/004499?text=odio",
                "venues": [
                    {
                        "id": 6,
                        "name": "Wuckert Ltd Hall",
                        "country": "Jordan",
                        "region": "Rhode Island",
                        "city": "Port Federicomouth",
                        "address": "5210 Waelchi Groves\nNew Rubie, MT 34745, Port Federicomouth, Rhode Island, Jordan",
                        "geo": {
                            "lat": "-30.976009000",
                            "lng": "-149.790341000"
                        },
                        "image": "https://via.placeholder.com/640x480.png/0044ff?text=voluptates",
                        "link": "http://eventzu.no/api/venues/6"
                    }
                ],
                "performers": [
                    {
                        "id": 51,
                        "name": "Prof. Luz Price",
                        "role": "co_headliner",
                        "image": "https://via.placeholder.com/640x480.png/00eeff?text=ipsam",
                        "bio": "Est at exercitationem aperiam corporis occaecati rerum. Sint fugit enim corporis quos et. Impedit ut laborum dignissimos omnis. Possimus accusantium adipisci eos molestiae odit hic.",
                        "link": "http://eventzu.no/api/performers/51"
                    },
                    {
                        "id": 52,
                        "name": "Keyon Walsh",
                        "role": "guest",
                        "image": "https://via.placeholder.com/640x480.png/00eeee?text=ullam",
                        "bio": "Quam autem et accusantium vel labore aperiam fugiat. Quis sint expedita alias distinctio minus et eos. Dignissimos repudiandae enim expedita quis perspiciatis. Consequatur et aperiam ducimus.",
                        "link": "http://eventzu.no/api/performers/52"
                    }
                ],
                "tickets": [
                    {
                        "name": "quod",
                        "type": "free_guest",
                        "price": 88326,
                        "currency": "SZL",
                        "available_from": "2023-04-11 15:00:00",
                        "available_until": "2023-04-12 15:00:00",
                        "source_url": "http://kerluke.com/",
                        "ticketor": {
                            "id": 2,
                            "name": "Romaguera Inc Tixs",
                            "link": "http://eventzu.no/api/ticketors/2"
                        }
                    },
                    {
                        "name": "non",
                        "type": "free_guest",
                        "price": 50535,
                        "currency": "CUP",
                        "available_from": "2023-05-12 09:00:00",
                        "available_until": "2023-05-15 09:00:00",
                        "source_url": "http://www.stehr.com/praesentium-voluptatem-ut-accusamus-voluptatem-dicta",
                        "ticketor": {
                            "id": 1,
                            "name": "Rempel, Bahringer and Cruickshank Tixs",
                            "link": "http://eventzu.no/api/ticketors/1"
                        }
                    }
                ],
                "promoters": [],
                "tour": null,
                "media": [
                    {
                        "media_type": "music",
                        "file_url": "https://via.placeholder.com/640x480.png/001188?text=esse",
                        "caption": "Assumenda sapiente enim veritatis consequatur necessitatibus et minima."
                    },
                    {
                        "media_type": "music",
                        "file_url": "https://via.placeholder.com/640x480.png/0044aa?text=placeat",
                        "caption": "Quia facere optio aut ut."
                    },
                    {
                        "media_type": "music",
                        "file_url": "https://via.placeholder.com/640x480.png/00ee99?text=recusandae",
                        "caption": "Autem maxime vel minima et alias."
                    }
                ],
                "social_links": [
                    {
                        "platform": "Instagram",
                        "url": "https://www.instagram.com/veum.murl"
                    },
                    {
                        "platform": "Facebook",
                        "url": "https://www.facebook.com/frami.isidro"
                    }
                ],
                "status": "postponed"
            },
            {
                "id": 3,
                "name": "Et placeat atque rerum.",
                "start_date": "2023-06-26T23:00:00.000000Z",
                "end_date": "2023-06-27T17:00:00.000000Z",
                "description": "Exercitationem sunt ut illo minima esse dolor aut sint. Et et ex omnis delectus consequatur laudantium. Eos id inventore ipsam ut dolor atque.",
                "location": "Norfolk Island, Kleinbury",
                "timeline": "upcoming",
                "time_until": "In 1 month",
                "event_type": "concert",
                "genres": [
                    "EDM",
                    "Pop"
                ],
                "image": "https://via.placeholder.com/640x480.png/00ff88?text=quibusdam",
                "venues": [
                    {
                        "id": 8,
                        "name": "Spencer-Wisozk Stadium",
                        "country": "Norfolk Island",
                        "region": "Massachusetts",
                        "city": "Kleinbury",
                        "address": "2736 Wilmer Pine Suite 165\nNew Savionbury, WA 49555-7111, Kleinbury, Massachusetts, Norfolk Island",
                        "geo": {
                            "lat": "-19.811104000",
                            "lng": "-18.445472000"
                        },
                        "image": "https://via.placeholder.com/640x480.png/0033ee?text=quo",
                        "link": "http://eventzu.no/api/venues/8"
                    }
                ],
                "performers": [
                    {
                        "id": 55,
                        "name": "Kellie Braun",
                        "role": "co_headliner",
                        "image": "https://via.placeholder.com/640x480.png/00ee44?text=assumenda",
                        "bio": "Ut placeat repellendus facere repellat et nam. Voluptatem vero odio quod facere in quia expedita ea. Voluptas quis nesciunt quod qui et.",
                        "link": "http://eventzu.no/api/performers/55"
                    },
                    {
                        "id": 56,
                        "name": "Alex Thiel",
                        "role": "support",
                        "image": "https://via.placeholder.com/640x480.png/0011bb?text=nobis",
                        "bio": "Perferendis odit repellendus nisi. Quia nostrum alias non provident aut itaque tenetur. Doloremque error tempore cupiditate. Mollitia harum ut et incidunt voluptas sit.",
                        "link": "http://eventzu.no/api/performers/56"
                    }
                ],
                "tickets": [
                    {
                        "name": "asperiores",
                        "type": "vip",
                        "price": 73661,
                        "currency": "KWD",
                        "available_from": "2023-05-25 18:00:00",
                        "available_until": "2023-05-27 06:00:00",
                        "source_url": "https://www.moen.com/natus-provident-quaerat-voluptas-molestias-aut-accusantium-debitis",
                        "ticketor": {
                            "id": 3,
                            "name": "Goyette PLC Tixs",
                            "link": "http://eventzu.no/api/ticketors/3"
                        }
                    },
                    {
                        "name": "ducimus",
                        "type": "door",
                        "price": 98384,
                        "currency": "TZS",
                        "available_from": "2023-06-01 10:00:00",
                        "available_until": "2023-06-03 23:00:00",
                        "source_url": "http://www.schoen.biz/perspiciatis-ipsum-id-qui.html",
                        "ticketor": {
                            "id": 1,
                            "name": "Rempel, Bahringer and Cruickshank Tixs",
                            "link": "http://eventzu.no/api/ticketors/1"
                        }
                    }
                ],
                "promoters": [],
                "tour": null,
                "media": [
                    {
                        "media_type": "image",
                        "file_url": "https://via.placeholder.com/640x480.png/003377?text=est",
                        "caption": "Magnam sint nihil non ipsa dolorum."
                    },
                    {
                        "media_type": "image",
                        "file_url": "https://via.placeholder.com/640x480.png/004499?text=sequi",
                        "caption": "Laborum nihil consectetur consequatur totam exercitationem."
                    },
                    {
                        "media_type": "music",
                        "file_url": "https://via.placeholder.com/640x480.png/0000ff?text=nesciunt",
                        "caption": "Sit rerum earum ad ea."
                    }
                ],
                "social_links": [
                    {
                        "platform": "Facebook",
                        "url": "https://www.facebook.com/ifay"
                    },
                    {
                        "platform": "YouTube",
                        "url": "https://www.youtube.com/user/carolyn.gaylord"
                    }
                ],
                "status": "published"
            },
            {
                "id": 4,
                "name": "Autem consequuntur magnam explicabo aut.",
                "start_date": "2023-06-12T15:00:00.000000Z",
                "end_date": "2023-06-12T20:00:00.000000Z",
                "description": "Occaecati asperiores sit non ipsa consequuntur dolores sapiente. Fugit in sapiente ut ipsam aut similique. Animi soluta necessitatibus ea possimus ratione.",
                "location": "Belarus, Port Sambury",
                "timeline": "upcoming",
                "time_until": "In 3 weeks",
                "event_type": "hybrid",
                "genres": [
                    "Jazz",
                    "World"
                ],
                "image": "https://via.placeholder.com/640x480.png/009944?text=a",
                "venues": [
                    {
                        "id": 9,
                        "name": "Mertz-Roberts Stadium",
                        "country": "Belarus",
                        "region": "Vermont",
                        "city": "Port Sambury",
                        "address": "1833 Gunner Alley Apt. 999\nOvachester, VA 30193, Port Sambury, Vermont, Belarus",
                        "geo": {
                            "lat": "53.374067000",
                            "lng": "-179.607199000"
                        },
                        "image": "https://via.placeholder.com/640x480.png/004411?text=aut",
                        "link": "http://eventzu.no/api/venues/9"
                    }
                ],
                "performers": [
                    {
                        "id": 57,
                        "name": "Wyatt Veum",
                        "role": "headliner",
                        "image": "https://via.placeholder.com/640x480.png/00bbdd?text=repellendus",
                        "bio": "Ut sint explicabo aut rerum quo. Excepturi modi expedita et. Consequuntur ex in officia tenetur doloremque velit. Minima quo vitae amet velit praesentium sunt a cum.",
                        "link": "http://eventzu.no/api/performers/57"
                    },
                    {
                        "id": 58,
                        "name": "Prof. Harrison Hintz PhD",
                        "role": "support",
                        "image": "https://via.placeholder.com/640x480.png/0044cc?text=ut",
                        "bio": "Reprehenderit laborum commodi et voluptates cum rem velit. Est maiores corporis quae. Fuga incidunt eligendi aliquam distinctio occaecati. Possimus cumque sed et illum et sunt.",
                        "link": "http://eventzu.no/api/performers/58"
                    }
                ],
                "tickets": [
                    {
                        "name": "sint",
                        "type": "door",
                        "price": 60619,
                        "currency": "TTD",
                        "available_from": "2023-06-26 05:00:00",
                        "available_until": "2023-06-26 15:00:00",
                        "source_url": "https://ratke.biz/ut-in-eum-dolores-et-sunt-sed-qui.html",
                        "ticketor": {
                            "id": 4,
                            "name": "Balistreri-Gusikowski Tixs",
                            "link": "http://eventzu.no/api/ticketors/4"
                        }
                    },
                    {
                        "name": "sapiente",
                        "type": "discount_list",
                        "price": 57483,
                        "currency": "KZT",
                        "available_from": "2023-04-06 00:00:00",
                        "available_until": "2023-04-07 05:00:00",
                        "source_url": "http://oconner.com/omnis-quae-odit-eos-sunt.html",
                        "ticketor": {
                            "id": 1,
                            "name": "Rempel, Bahringer and Cruickshank Tixs",
                            "link": "http://eventzu.no/api/ticketors/1"
                        }
                    }
                ],
                "promoters": [],
                "tour": null,
                "media": [
                    {
                        "media_type": "video",
                        "file_url": "https://via.placeholder.com/640x480.png/00ccff?text=architecto",
                        "caption": "Consequatur iure porro amet ipsam voluptatum."
                    },
                    {
                        "media_type": "video",
                        "file_url": "https://via.placeholder.com/640x480.png/008822?text=placeat",
                        "caption": "Et ut unde et fuga."
                    },
                    {
                        "media_type": "video",
                        "file_url": "https://via.placeholder.com/640x480.png/0055ff?text=id",
                        "caption": "Ad modi at neque ut et et ipsa."
                    }
                ],
                "social_links": [
                    {
                        "platform": "YouTube",
                        "url": "https://www.youtube.com/user/sasha.okeefe"
                    },
                    {
                        "platform": "YouTube",
                        "url": "https://www.youtube.com/user/dawn.ruecker"
                    },
                    {
                        "platform": "Facebook",
                        "url": "httsp://facebook.com/text"
                    }
                ],
                "status": "published"
            },
            {
                "id": 19,
                "name": "Asperiores excepturi dignissimos ut soluta.",
                "start_date": "2023-06-22T12:00:00.000000Z",
                "end_date": "2023-06-25T02:00:00.000000Z",
                "description": "Sit quae nemo eum quas. Voluptas quisquam enim occaecati nihil delectus dicta ut. Voluptas consequuntur sit expedita quia sapiente reprehenderit.",
                "location": "Maldives, Rutherfordfort",
                "timeline": "upcoming",
                "time_until": "In 1 month",
                "event_type": "hybrid",
                "genres": [
                    "House",
                    "Ambient"
                ],
                "image": "https://via.placeholder.com/640x480.png/00bbcc?text=quo",
                "venues": [
                    {
                        "id": 24,
                        "name": "Eichmann, Lind and Grimes Center",
                        "country": "Maldives",
                        "region": "Ohio",
                        "city": "Rutherfordfort",
                        "address": "503 Trantow Cliff Apt. 993\nNew Dedrictown, KY 51514-9182, Rutherfordfort, Ohio, Maldives",
                        "geo": {
                            "lat": "70.563945000",
                            "lng": "-90.327374000"
                        },
                        "image": "https://via.placeholder.com/640x480.png/005511?text=alias",
                        "link": "http://eventzu.no/api/venues/24"
                    }
                ],
                "performers": [
                    {
                        "id": 87,
                        "name": "Mr. Jay Schamberger",
                        "role": "support",
                        "image": "https://via.placeholder.com/640x480.png/009955?text=temporibus",
                        "bio": "Omnis quia tenetur quis nihil. Molestias consectetur fugit modi porro aut nihil. Dolor iusto quia pariatur minus. Optio est non repellat non rerum. Odio rem libero animi.",
                        "link": "http://eventzu.no/api/performers/87"
                    },
                    {
                        "id": 88,
                        "name": "Isai Durgan",
                        "role": "headliner",
                        "image": "https://via.placeholder.com/640x480.png/002266?text=sed",
                        "bio": "Deleniti est ea eum sit odio tempore. Necessitatibus et ut pariatur quisquam rem dolorem accusantium autem. Adipisci voluptas enim in a aut quas. Accusamus amet ipsam a nisi harum et.",
                        "link": "http://eventzu.no/api/performers/88"
                    },
                    {
                        "id": 75,
                        "name": "Dr. Kristofer Hand",
                        "role": "headliner",
                        "image": "https://via.placeholder.com/640x480.png/00dd00?text=cumque",
                        "bio": "<p>Est quia ea est nostrum. Cumque vitae repellat aut. Natus sint molestiae quae quam provident.</p>",
                        "link": "http://eventzu.no/api/performers/75"
                    }
                ],
                "tickets": [
                    {
                        "name": "et",
                        "type": "discount_list",
                        "price": 64060,
                        "currency": "SHP",
                        "available_from": "2023-04-24 04:00:00",
                        "available_until": "2023-04-27 03:00:00",
                        "source_url": "http://nolan.org/natus-tempore-magnam-illum-esse-debitis.html",
                        "ticketor": {
                            "id": 1,
                            "name": "Rempel, Bahringer and Cruickshank Tixs",
                            "link": "http://eventzu.no/api/ticketors/1"
                        }
                    }
                ],
                "promoters": [],
                "tour": {
                    "id": 2,
                    "name": "Dr. Kristofer Hand Tour",
                    "performer": {
                        "id": 75,
                        "name": "Dr. Kristofer Hand",
                        "link": "http://eventzu.no/api/performers/75"
                    },
                    "start_date": "2023-06-05T03:00:00.000000Z",
                    "end_date": "2023-07-30T11:06:23.000000Z",
                    "image": "https://via.placeholder.com/640x480.png/0088bb?text=provident",
                    "link": "http://eventzu.no/api/tours/2"
                },
                "media": [],
                "social_links": [],
                "status": "postponed"
            },
            {
                "id": 26,
                "name": "Molestias eos.",
                "start_date": "2023-06-10T12:00:00.000000Z",
                "end_date": "2023-06-13T04:00:00.000000Z",
                "description": "Tenetur consequuntur ratione illo ducimus dolor. Voluptas vero quae dolores facere. Exercitationem nostrum culpa repudiandae est eveniet voluptatem omnis sed.",
                "location": "Iceland, Lake Melbaborough",
                "timeline": "upcoming",
                "time_until": "In 3 weeks",
                "event_type": "concert",
                "genres": [
                    "Afrobeats",
                    "Gospel"
                ],
                "image": "https://via.placeholder.com/640x480.png/00cc88?text=velit",
                "venues": [
                    {
                        "id": 31,
                        "name": "Torp, Weimann and Kulas Arena",
                        "country": "Iceland",
                        "region": "South Carolina",
                        "city": "Lake Melbaborough",
                        "address": "51802 Will Skyway Apt. 469\nSouth Rozellaburgh, ME 92092, Lake Melbaborough, South Carolina, Iceland",
                        "geo": {
                            "lat": "50.424273000",
                            "lng": "-57.850447000"
                        },
                        "image": "https://via.placeholder.com/640x480.png/0044ee?text=aut",
                        "link": "http://eventzu.no/api/venues/31"
                    }
                ],
                "performers": [
                    {
                        "id": 101,
                        "name": "Delphia Osinski",
                        "role": "guest",
                        "image": "https://via.placeholder.com/640x480.png/00ddff?text=accusantium",
                        "bio": "Rerum labore ipsum qui atque necessitatibus debitis aut tenetur. Eos consequuntur dolorem nihil reiciendis qui. Voluptates reiciendis ut et aut maiores perspiciatis et.",
                        "link": "http://eventzu.no/api/performers/101"
                    },
                    {
                        "id": 102,
                        "name": "Yessenia Swaniawski Jr.",
                        "role": "guest",
                        "image": "https://via.placeholder.com/640x480.png/00bbff?text=odio",
                        "bio": "Aliquam eum nostrum ut sunt reiciendis. Sint ut sunt laudantium voluptatum alias omnis sunt. Eum fugit aperiam repellendus nisi in.",
                        "link": "http://eventzu.no/api/performers/102"
                    },
                    {
                        "id": 76,
                        "name": "Rozella Volkman",
                        "role": "headliner",
                        "image": "https://via.placeholder.com/640x480.png/008800?text=adipisci",
                        "bio": "Sed incidunt nesciunt non distinctio ea. Sunt necessitatibus quasi dolores dicta nihil qui. Saepe temporibus illo ducimus quasi nihil non. Ex et sit asperiores sunt quo.",
                        "link": "http://eventzu.no/api/performers/76"
                    }
                ],
                "tickets": [
                    {
                        "name": "ducimus",
                        "type": "discount_list",
                        "price": 88896,
                        "currency": "BBD",
                        "available_from": "2023-05-13 02:00:00",
                        "available_until": "2023-05-15 08:00:00",
                        "source_url": "http://www.macejkovic.com/ex-ea-quia-officiis-nesciunt-mollitia.html",
                        "ticketor": {
                            "id": 1,
                            "name": "Rempel, Bahringer and Cruickshank Tixs",
                            "link": "http://eventzu.no/api/ticketors/1"
                        }
                    }
                ],
                "promoters": [],
                "tour": {
                    "id": 4,
                    "name": "Rozella Volkman Tour",
                    "performer": {
                        "id": 76,
                        "name": "Rozella Volkman",
                        "link": "http://eventzu.no/api/performers/76"
                    },
                    "start_date": "2023-06-11T05:00:00.000000Z",
                    "end_date": "2023-08-15T02:55:34.000000Z",
                    "image": "https://via.placeholder.com/640x480.png/00cc77?text=necessitatibus",
                    "link": "http://eventzu.no/api/tours/4"
                },
                "media": [],
                "social_links": [],
                "status": "postponed"
            }
        ],
        "event_count": 6,
        "media": [
            {
                "media_type": "music",
                "file_url": "https://via.placeholder.com/640x480.png/00eeaa?text=nihil",
                "caption": "Et nam minus nobis."
            },
            {
                "media_type": "music",
                "file_url": "https://via.placeholder.com/640x480.png/0000aa?text=molestiae",
                "caption": "Dignissimos reiciendis sunt quo ex temporibus."
            },
            {
                "media_type": "video",
                "file_url": "https://via.placeholder.com/640x480.png/00ee66?text=officiis",
                "caption": "Sed dolor dolor eos vero."
            }
        ],
        "social_links": [
            {
                "platform": "Twitter",
                "url": "https://www.twitter.com/skiles.lois"
            },
            {
                "platform": "Facebook",
                "url": "https://www.facebook.com/conroy.juliet"
            }
        ]
    }
}
 

Request      

GET api/ticketors/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the ticketor. Example: 1

Ticketor Events

Show a list of events related to the specified ticketor resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/ticketors/1/events" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/ticketors/1/events"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/ticketors/1/events',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 43
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "name": "Qui voluptatem accusamus.",
            "start_date": "2023-05-26T15:00:00.000000Z",
            "end_date": "2023-05-27T23:00:00.000000Z",
            "location": "Jordan, Port Federicomouth",
            "timeline": "upcoming",
            "time_until": "In 5 days",
            "event_type": "theater",
            "genres": [
                "Pop",
                "Folk"
            ],
            "image": "https://via.placeholder.com/640x480.png/004499?text=odio",
            "venues": [
                {
                    "id": 6,
                    "name": "Wuckert Ltd Hall",
                    "country": "Jordan",
                    "city": "Port Federicomouth",
                    "geo": {
                        "lat": "-30.976009000",
                        "lng": "-149.790341000"
                    },
                    "link": "http://eventzu.no/api/venues/6"
                }
            ],
            "performers": [
                {
                    "id": 51,
                    "name": "Prof. Luz Price",
                    "role": "co_headliner",
                    "link": "http://eventzu.no/api/performers/51"
                },
                {
                    "id": 52,
                    "name": "Keyon Walsh",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/52"
                }
            ],
            "tickets": [
                {
                    "name": "quod",
                    "type": "free_guest",
                    "price": 88326,
                    "currency": "SZL"
                },
                {
                    "name": "non",
                    "type": "free_guest",
                    "price": 50535,
                    "currency": "CUP"
                }
            ],
            "promoters": [],
            "tour": null,
            "link": "http://eventzu.no/api/events/1",
            "status": "postponed"
        },
        {
            "id": 3,
            "name": "Et placeat atque rerum.",
            "start_date": "2023-06-26T23:00:00.000000Z",
            "end_date": "2023-06-27T17:00:00.000000Z",
            "location": "Norfolk Island, Kleinbury",
            "timeline": "upcoming",
            "time_until": "In 1 month",
            "event_type": "concert",
            "genres": [
                "EDM",
                "Pop"
            ],
            "image": "https://via.placeholder.com/640x480.png/00ff88?text=quibusdam",
            "venues": [
                {
                    "id": 8,
                    "name": "Spencer-Wisozk Stadium",
                    "country": "Norfolk Island",
                    "city": "Kleinbury",
                    "geo": {
                        "lat": "-19.811104000",
                        "lng": "-18.445472000"
                    },
                    "link": "http://eventzu.no/api/venues/8"
                }
            ],
            "performers": [
                {
                    "id": 55,
                    "name": "Kellie Braun",
                    "role": "co_headliner",
                    "link": "http://eventzu.no/api/performers/55"
                },
                {
                    "id": 56,
                    "name": "Alex Thiel",
                    "role": "support",
                    "link": "http://eventzu.no/api/performers/56"
                }
            ],
            "tickets": [
                {
                    "name": "asperiores",
                    "type": "vip",
                    "price": 73661,
                    "currency": "KWD"
                },
                {
                    "name": "ducimus",
                    "type": "door",
                    "price": 98384,
                    "currency": "TZS"
                }
            ],
            "promoters": [],
            "tour": null,
            "link": "http://eventzu.no/api/events/3",
            "status": "published"
        },
        {
            "id": 4,
            "name": "Autem consequuntur magnam explicabo aut.",
            "start_date": "2023-06-12T15:00:00.000000Z",
            "end_date": "2023-06-12T20:00:00.000000Z",
            "location": "Belarus, Port Sambury",
            "timeline": "upcoming",
            "time_until": "In 3 weeks",
            "event_type": "hybrid",
            "genres": [
                "Jazz",
                "World"
            ],
            "image": "https://via.placeholder.com/640x480.png/009944?text=a",
            "venues": [
                {
                    "id": 9,
                    "name": "Mertz-Roberts Stadium",
                    "country": "Belarus",
                    "city": "Port Sambury",
                    "geo": {
                        "lat": "53.374067000",
                        "lng": "-179.607199000"
                    },
                    "link": "http://eventzu.no/api/venues/9"
                }
            ],
            "performers": [
                {
                    "id": 57,
                    "name": "Wyatt Veum",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/57"
                },
                {
                    "id": 58,
                    "name": "Prof. Harrison Hintz PhD",
                    "role": "support",
                    "link": "http://eventzu.no/api/performers/58"
                }
            ],
            "tickets": [
                {
                    "name": "sint",
                    "type": "door",
                    "price": 60619,
                    "currency": "TTD"
                },
                {
                    "name": "sapiente",
                    "type": "discount_list",
                    "price": 57483,
                    "currency": "KZT"
                }
            ],
            "promoters": [],
            "tour": null,
            "link": "http://eventzu.no/api/events/4",
            "status": "published"
        },
        {
            "id": 19,
            "name": "Asperiores excepturi dignissimos ut soluta.",
            "start_date": "2023-06-22T12:00:00.000000Z",
            "end_date": "2023-06-25T02:00:00.000000Z",
            "location": "Maldives, Rutherfordfort",
            "timeline": "upcoming",
            "time_until": "In 1 month",
            "event_type": "hybrid",
            "genres": [
                "House",
                "Ambient"
            ],
            "image": "https://via.placeholder.com/640x480.png/00bbcc?text=quo",
            "venues": [
                {
                    "id": 24,
                    "name": "Eichmann, Lind and Grimes Center",
                    "country": "Maldives",
                    "city": "Rutherfordfort",
                    "geo": {
                        "lat": "70.563945000",
                        "lng": "-90.327374000"
                    },
                    "link": "http://eventzu.no/api/venues/24"
                }
            ],
            "performers": [
                {
                    "id": 87,
                    "name": "Mr. Jay Schamberger",
                    "role": "support",
                    "link": "http://eventzu.no/api/performers/87"
                },
                {
                    "id": 88,
                    "name": "Isai Durgan",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/88"
                },
                {
                    "id": 75,
                    "name": "Dr. Kristofer Hand",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/75"
                }
            ],
            "tickets": [
                {
                    "name": "et",
                    "type": "discount_list",
                    "price": 64060,
                    "currency": "SHP"
                }
            ],
            "promoters": [],
            "tour": {
                "id": 2,
                "name": "Dr. Kristofer Hand Tour",
                "performer": {
                    "id": 75,
                    "name": "Dr. Kristofer Hand",
                    "link": "http://eventzu.no/api/performers/75"
                },
                "link": "http://eventzu.no/api/tours/2"
            },
            "link": "http://eventzu.no/api/events/19",
            "status": "postponed"
        },
        {
            "id": 26,
            "name": "Molestias eos.",
            "start_date": "2023-06-10T12:00:00.000000Z",
            "end_date": "2023-06-13T04:00:00.000000Z",
            "location": "Iceland, Lake Melbaborough",
            "timeline": "upcoming",
            "time_until": "In 3 weeks",
            "event_type": "concert",
            "genres": [
                "Afrobeats",
                "Gospel"
            ],
            "image": "https://via.placeholder.com/640x480.png/00cc88?text=velit",
            "venues": [
                {
                    "id": 31,
                    "name": "Torp, Weimann and Kulas Arena",
                    "country": "Iceland",
                    "city": "Lake Melbaborough",
                    "geo": {
                        "lat": "50.424273000",
                        "lng": "-57.850447000"
                    },
                    "link": "http://eventzu.no/api/venues/31"
                }
            ],
            "performers": [
                {
                    "id": 101,
                    "name": "Delphia Osinski",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/101"
                },
                {
                    "id": 102,
                    "name": "Yessenia Swaniawski Jr.",
                    "role": "guest",
                    "link": "http://eventzu.no/api/performers/102"
                },
                {
                    "id": 76,
                    "name": "Rozella Volkman",
                    "role": "headliner",
                    "link": "http://eventzu.no/api/performers/76"
                }
            ],
            "tickets": [
                {
                    "name": "ducimus",
                    "type": "discount_list",
                    "price": 88896,
                    "currency": "BBD"
                }
            ],
            "promoters": [],
            "tour": {
                "id": 4,
                "name": "Rozella Volkman Tour",
                "performer": {
                    "id": 76,
                    "name": "Rozella Volkman",
                    "link": "http://eventzu.no/api/performers/76"
                },
                "link": "http://eventzu.no/api/tours/4"
            },
            "link": "http://eventzu.no/api/events/26",
            "status": "postponed"
        }
    ],
    "links": {
        "first": "http://localhost/api/ticketors/1/events?page=1",
        "last": "http://localhost/api/ticketors/1/events?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/ticketors/1/events?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/ticketors/1/events",
        "per_page": 10,
        "to": 5,
        "total": 5
    }
}
 

Request      

GET api/ticketors/{ticketor_id}/events

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

ticketor_id   integer   

The ID of the ticketor. Example: 1

Body Parameters

timeline   string  optional  

Filter with events in timeline, defaults to upcoming. Must be one of upcoming, ongoing, or past.

date_after   string  optional  

Filter with events after this date. Must be a valid date.

date_before   string  optional  

Filter with events before this date. Must be a valid date.

Management Orgs List

Show a list of management orgs

Example request:
curl --request GET \
    --get "https://eventzu.no/api/management-orgs" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/management-orgs"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/management-orgs',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 42
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "name": "Sipes, Ortiz and Wisoky Org",
            "org_type": "sound",
            "link": "http://eventzu.no/api/management-orgs/1"
        },
        {
            "id": 2,
            "name": "Langworth-Keeling Managemnet",
            "org_type": "stage",
            "link": "http://eventzu.no/api/management-orgs/2"
        },
        {
            "id": 3,
            "name": "Schiller Ltd Org",
            "org_type": "makeup",
            "link": "http://eventzu.no/api/management-orgs/3"
        },
        {
            "id": 4,
            "name": "Haley Group Group",
            "org_type": "tour",
            "link": "http://eventzu.no/api/management-orgs/4"
        },
        {
            "id": 5,
            "name": "Leuschke-Gerhold Managemnet",
            "org_type": "advancing",
            "link": "http://eventzu.no/api/management-orgs/5"
        },
        {
            "id": 6,
            "name": "zxzxxz",
            "org_type": "general",
            "link": "http://eventzu.no/api/management-orgs/6"
        },
        {
            "id": 7,
            "name": "xzxzzx",
            "org_type": "general",
            "link": "http://eventzu.no/api/management-orgs/7"
        },
        {
            "id": 8,
            "name": "sdsdds",
            "org_type": "general",
            "link": "http://eventzu.no/api/management-orgs/8"
        },
        {
            "id": 9,
            "name": "dsadds",
            "org_type": "general",
            "link": "http://eventzu.no/api/management-orgs/9"
        },
        {
            "id": 10,
            "name": "dsdsdsds",
            "org_type": "stage",
            "link": "http://eventzu.no/api/management-orgs/10"
        }
    ],
    "links": {
        "first": "http://localhost/api/management-orgs?page=1",
        "last": "http://localhost/api/management-orgs?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/management-orgs?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/management-orgs",
        "per_page": 10,
        "to": 10,
        "total": 10
    }
}
 

Request      

GET api/management-orgs

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

search   string  optional  

Search by name.

Management Orgs Item

Display the specified management orgs resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/management-orgs/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/management-orgs/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/management-orgs/1',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 41
access-control-allow-origin: *
 

{
    "data": {
        "id": 1,
        "name": "Sipes, Ortiz and Wisoky Org",
        "org_type": "sound",
        "description": "Ea ut provident deleniti tenetur aut nulla soluta voluptatem fuga voluptatem.",
        "website": "http://stiedemann.com/incidunt-ipsum-similique-modi-quis-est-eligendi-provident",
        "email": "corkery.anastacio@example.net",
        "phone": "+1-640-293-5978",
        "performers": [
            {
                "id": 41,
                "name": "Greyson Waters",
                "org_role": "pr",
                "start_date": "2015-06-20",
                "end_date": null,
                "link": "http://eventzu.no/api/performers/41"
            },
            {
                "id": 42,
                "name": "Ana Hammes",
                "org_role": "stage",
                "start_date": "2022-08-27",
                "end_date": null,
                "link": "http://eventzu.no/api/performers/42"
            }
        ],
        "performer_count": 2,
        "media": [
            {
                "media_type": "video",
                "file_url": "https://via.placeholder.com/640x480.png/0033ff?text=quo",
                "caption": "Nihil ea ea enim ut delectus enim et."
            },
            {
                "media_type": "video",
                "file_url": "https://via.placeholder.com/640x480.png/00ccbb?text=architecto",
                "caption": "Voluptas accusamus et ut rem et."
            },
            {
                "media_type": "video",
                "file_url": "https://via.placeholder.com/640x480.png/00ddff?text=minima",
                "caption": "Rerum cumque mollitia minima rerum est omnis dolore."
            }
        ],
        "social_links": [
            {
                "platform": "Twitter",
                "url": "https://www.twitter.com/kristopher19"
            },
            {
                "platform": "YouTube",
                "url": "https://www.youtube.com/user/qbarton"
            }
        ]
    }
}
 

Request      

GET api/management-orgs/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the management org. Example: 1

Management Org Performers

Show a list of performers related to the specified management org resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/management-orgs/1/performers" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/management-orgs/1/performers"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/management-orgs/1/performers',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 40
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 41,
            "name": "Greyson Waters",
            "performer_type": "Comedian",
            "genres": [
                "House",
                "R&B"
            ],
            "image": "https://via.placeholder.com/640x480.png/008822?text=nemo",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "org_role": "pr",
            "start_date": "2015-06-20",
            "end_date": null,
            "link": "http://eventzu.no/api/performers/41"
        },
        {
            "id": 42,
            "name": "Ana Hammes",
            "performer_type": "Photographer",
            "genres": [
                "Techno",
                "Dub"
            ],
            "image": "https://via.placeholder.com/640x480.png/0044dd?text=dolorem",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "org_role": "stage",
            "start_date": "2022-08-27",
            "end_date": null,
            "link": "http://eventzu.no/api/performers/42"
        }
    ],
    "links": {
        "first": "http://localhost/api/management-orgs/1/performers?page=1",
        "last": "http://localhost/api/management-orgs/1/performers?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/management-orgs/1/performers?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/management-orgs/1/performers",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/management-orgs/{org_id}/performers

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

org_id   integer   

The ID of the org. Example: 1

Agents List

Show a list of agents

Example request:
curl --request GET \
    --get "https://eventzu.no/api/agents" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/agents"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/agents',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 39
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "name": "Muller Group",
            "image": "https://via.placeholder.com/640x480.png/0022aa?text=music+Muller+Group+officiis",
            "link": "http://eventzu.no/api/agents/1"
        },
        {
            "id": 2,
            "name": "Wiegand and Sons",
            "image": "https://via.placeholder.com/640x480.png/0066bb?text=music+Wiegand+and+Sons+voluptas",
            "link": "http://eventzu.no/api/agents/2"
        },
        {
            "id": 3,
            "name": "Kshlerin Inc",
            "image": "https://via.placeholder.com/640x480.png/00ccaa?text=music+Kshlerin+Inc+modi",
            "link": "http://eventzu.no/api/agents/3"
        },
        {
            "id": 4,
            "name": "Hilpert PLC",
            "image": "https://via.placeholder.com/640x480.png/00ffee?text=music+Hilpert+PLC+voluptas",
            "link": "http://eventzu.no/api/agents/4"
        },
        {
            "id": 5,
            "name": "Crona-Gleason",
            "image": "https://via.placeholder.com/640x480.png/004433?text=music+Crona-Gleason+maxime",
            "link": "http://eventzu.no/api/agents/5"
        },
        {
            "id": 6,
            "name": "fdfdfdfd",
            "image": null,
            "link": "http://eventzu.no/api/agents/6"
        }
    ],
    "links": {
        "first": "http://localhost/api/agents?page=1",
        "last": "http://localhost/api/agents?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/agents?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/agents",
        "per_page": 10,
        "to": 6,
        "total": 6
    }
}
 

Request      

GET api/agents

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

search   string  optional  

Search by name.

Agents Item

Display the specified agent resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/agents/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/agents/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/agents/1',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 38
access-control-allow-origin: *
 

{
    "data": {
        "id": 1,
        "name": "Muller Group",
        "description": "Quibusdam quis molestiae reiciendis qui sunt quisquam sit.",
        "website": "http://www.muller.com/laboriosam-et-perferendis-doloribus-quas-fuga-error.html",
        "image": "https://via.placeholder.com/640x480.png/0022aa?text=music+Muller+Group+officiis",
        "performers": [
            {
                "id": 31,
                "name": "Harry Klein MD",
                "role": "ROW",
                "start_date": "2016-07-16",
                "end_date": "2018-05-09",
                "link": "http://eventzu.no/api/performers/31"
            },
            {
                "id": 32,
                "name": "Gia Maggio",
                "role": "ROW",
                "start_date": "2013-12-28",
                "end_date": "2019-03-07",
                "link": "http://eventzu.no/api/performers/32"
            }
        ],
        "performer_count": 2,
        "media": [
            {
                "media_type": "image",
                "file_url": "https://via.placeholder.com/640x480.png/0033ee?text=facere",
                "caption": "Beatae quos molestias aspernatur nulla ratione modi quis consequatur."
            },
            {
                "media_type": "video",
                "file_url": "https://via.placeholder.com/640x480.png/003399?text=repudiandae",
                "caption": "Necessitatibus delectus velit voluptas assumenda doloribus et."
            },
            {
                "media_type": "video",
                "file_url": "https://via.placeholder.com/640x480.png/0011cc?text=et",
                "caption": "Repudiandae sit est laboriosam aut dolor eos."
            }
        ],
        "social_links": [
            {
                "platform": "Instagram",
                "url": "https://www.instagram.com/olson.natalia"
            },
            {
                "platform": "Instagram",
                "url": "https://www.instagram.com/leannon.donny"
            }
        ]
    }
}
 

Request      

GET api/agents/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the agent. Example: 1

Agent Performers

Show a list of performers related to the specified agent resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/agents/1/performers" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/agents/1/performers"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/agents/1/performers',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 37
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 31,
            "name": "Harry Klein MD",
            "performer_type": "VJ",
            "genres": [
                "Dubstep",
                "Dance"
            ],
            "image": "https://via.placeholder.com/640x480.png/00ee33?text=quis",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "role": "ROW",
            "start_date": "2016-07-16",
            "end_date": "2018-05-09",
            "link": "http://eventzu.no/api/performers/31"
        },
        {
            "id": 32,
            "name": "Gia Maggio",
            "performer_type": "Band",
            "genres": [
                "Ambient",
                "Ska"
            ],
            "image": "https://via.placeholder.com/640x480.png/00ddee?text=repellat",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "role": "ROW",
            "start_date": "2013-12-28",
            "end_date": "2019-03-07",
            "link": "http://eventzu.no/api/performers/32"
        }
    ],
    "links": {
        "first": "http://localhost/api/agents/1/performers?page=1",
        "last": "http://localhost/api/agents/1/performers?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/agents/1/performers?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/agents/1/performers",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/agents/{agent_id}/performers

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

agent_id   integer   

The ID of the agent. Example: 1

Labels List

Show a list of labels

Example request:
curl --request GET \
    --get "https://eventzu.no/api/labels" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
const url = new URL(
    "https://eventzu.no/api/labels"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/labels',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 36
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 1,
            "name": "Mayert LLC",
            "image": "https://via.placeholder.com/640x480.png/00bb99?text=music+Mayert+LLC+cum",
            "link": "http://eventzu.no/api/labels/1"
        },
        {
            "id": 2,
            "name": "Mante LLC",
            "image": "https://via.placeholder.com/640x480.png/00aaaa?text=music+Mante+LLC+odio",
            "link": "http://eventzu.no/api/labels/2"
        },
        {
            "id": 3,
            "name": "Medhurst and Sons",
            "image": "https://via.placeholder.com/640x480.png/001144?text=music+Medhurst+and+Sons+provident",
            "link": "http://eventzu.no/api/labels/3"
        },
        {
            "id": 4,
            "name": "Lynch LLC",
            "image": "https://via.placeholder.com/640x480.png/00bb00?text=music+Lynch+LLC+tempore",
            "link": "http://eventzu.no/api/labels/4"
        },
        {
            "id": 5,
            "name": "Fadel-Stehr",
            "image": "https://via.placeholder.com/640x480.png/00aa99?text=music+Fadel-Stehr+eos",
            "link": "http://eventzu.no/api/labels/5"
        },
        {
            "id": 6,
            "name": "xcxccx",
            "image": null,
            "link": "http://eventzu.no/api/labels/6"
        },
        {
            "id": 7,
            "name": "dffdfd",
            "image": null,
            "link": "http://eventzu.no/api/labels/7"
        }
    ],
    "links": {
        "first": "http://localhost/api/labels?page=1",
        "last": "http://localhost/api/labels?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/labels?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/labels",
        "per_page": 10,
        "to": 7,
        "total": 7
    }
}
 

Request      

GET api/labels

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

Body Parameters

search   string  optional  

Search by name.

Labels Item

Display the specified label resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/labels/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/labels/1"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/labels/1',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 35
access-control-allow-origin: *
 

{
    "data": {
        "id": 1,
        "name": "Mayert LLC",
        "description": "At nisi sint enim sit dolorum ut illum laudantium suscipit omnis et rerum consequatur enim.",
        "website": "https://www.ledner.com/occaecati-reprehenderit-eveniet-laborum-commodi-et-dolorum-aut",
        "image": "https://via.placeholder.com/640x480.png/00bb99?text=music+Mayert+LLC+cum",
        "performers": [
            {
                "id": 21,
                "name": "Mr. Everett Hand",
                "release": "quis ut",
                "license_type": "main",
                "isrc": "US-EQJ-23-32248",
                "start_date": "2020-11-28",
                "end_date": null,
                "link": "http://eventzu.no/api/performers/21"
            },
            {
                "id": 22,
                "name": "Roel Stoltenberg Jr.",
                "release": "saepe ut",
                "license_type": "sub",
                "isrc": "US-ZZJ-23-11742",
                "start_date": "2016-01-17",
                "end_date": null,
                "link": "http://eventzu.no/api/performers/22"
            }
        ],
        "performer_count": 2,
        "media": [
            {
                "media_type": "image",
                "file_url": "https://via.placeholder.com/640x480.png/0000cc?text=enim",
                "caption": "Doloremque voluptas odit voluptatem et veniam consequatur."
            },
            {
                "media_type": "music",
                "file_url": "https://via.placeholder.com/640x480.png/008811?text=minima",
                "caption": "Ullam expedita id voluptate consequatur ea."
            },
            {
                "media_type": "video",
                "file_url": "https://via.placeholder.com/640x480.png/000011?text=blanditiis",
                "caption": "Dignissimos dolorem atque praesentium iste velit omnis et."
            }
        ],
        "social_links": [
            {
                "platform": "Instagram",
                "url": "https://www.instagram.com/murray.isabel"
            },
            {
                "platform": "Instagram",
                "url": "https://www.instagram.com/salvatore66"
            }
        ]
    }
}
 

Request      

GET api/labels/{id}

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

id   integer   

The ID of the label. Example: 1

Label Performers

Show a list of performers related to the specified label resource.

Example request:
curl --request GET \
    --get "https://eventzu.no/api/labels/1/performers" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://eventzu.no/api/labels/1/performers"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
    'https://eventzu.no/api/labels/1/performers',
    [
        'headers' => [
            'Content-Type' => 'application/json',
            'Accept' => 'application/json',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 34
access-control-allow-origin: *
 

{
    "data": [
        {
            "id": 21,
            "name": "Mr. Everett Hand",
            "performer_type": "VJ",
            "genres": [
                "Blues",
                "Opera"
            ],
            "image": "https://via.placeholder.com/640x480.png/0088bb?text=tenetur",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "release": "quis ut",
            "license_type": "main",
            "isrc": "US-EQJ-23-32248",
            "start_date": "2020-11-28",
            "end_date": null,
            "link": "http://eventzu.no/api/performers/21"
        },
        {
            "id": 22,
            "name": "Roel Stoltenberg Jr.",
            "performer_type": "Comedian",
            "genres": [
                "Electro",
                "Afrobeats"
            ],
            "image": "https://via.placeholder.com/640x480.png/0088aa?text=ex",
            "upcoming_event_count": 0,
            "upcoming_events": [],
            "release": "saepe ut",
            "license_type": "sub",
            "isrc": "US-ZZJ-23-11742",
            "start_date": "2016-01-17",
            "end_date": null,
            "link": "http://eventzu.no/api/performers/22"
        }
    ],
    "links": {
        "first": "http://localhost/api/labels/1/performers?page=1",
        "last": "http://localhost/api/labels/1/performers?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "http://localhost/api/labels/1/performers?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "http://localhost/api/labels/1/performers",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/labels/{agent_id}/performers

Headers

Content-Type      

Example: application/json

Accept      

Example: application/json

URL Parameters

agent_id   integer   

The ID of the agent. Example: 1