List an event's shifts
curl --request GET \
--url https://api.signupbreeze.com/v1/events/{event_id}/slots \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.signupbreeze.com/v1/events/{event_id}/slots"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.signupbreeze.com/v1/events/{event_id}/slots', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.signupbreeze.com/v1/events/{event_id}/slots",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signupbreeze.com/v1/events/{event_id}/slots"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.signupbreeze.com/v1/events/{event_id}/slots")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signupbreeze.com/v1/events/{event_id}/slots")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "019ff256-ece1-7285-a9b8-fd63c10f3523",
"event_id": "019ff256-ece0-71db-8091-6beb3a342329",
"title": "Setup Team",
"location": null,
"is_virtual": false,
"start_time": "2026-11-11T10:03:18+00:00",
"end_time": "2026-11-11T12:03:18+00:00",
"capacity": 7,
"filled": 0,
"remaining": 7,
"created_at": "2026-08-11T19:40:10+00:00",
"updated_at": "2026-08-11T19:40:10+00:00"
},
{
"id": "019ff256-ece3-71d3-9837-86f2def299f7",
"event_id": "019ff256-ece2-72fd-a632-a99f903028ee",
"title": "Grill Master",
"location": null,
"is_virtual": false,
"start_time": "2026-08-21T21:50:57+00:00",
"end_time": "2026-08-21T23:50:57+00:00",
"capacity": 2,
"filled": 0,
"remaining": 2,
"created_at": "2026-08-11T19:40:10+00:00",
"updated_at": "2026-08-11T19:40:10+00:00"
}
]
}{
"message": "Not found."
}List an event's shifts
Returns every shift on the event in running order, with how full each one is. Not paginated: events have shifts, not thousands of them.
Requires the slots:read scope.
GET
/
v1
/
events
/
{event_id}
/
slots
List an event's shifts
curl --request GET \
--url https://api.signupbreeze.com/v1/events/{event_id}/slots \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.signupbreeze.com/v1/events/{event_id}/slots"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.signupbreeze.com/v1/events/{event_id}/slots', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.signupbreeze.com/v1/events/{event_id}/slots",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.signupbreeze.com/v1/events/{event_id}/slots"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.signupbreeze.com/v1/events/{event_id}/slots")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.signupbreeze.com/v1/events/{event_id}/slots")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "019ff256-ece1-7285-a9b8-fd63c10f3523",
"event_id": "019ff256-ece0-71db-8091-6beb3a342329",
"title": "Setup Team",
"location": null,
"is_virtual": false,
"start_time": "2026-11-11T10:03:18+00:00",
"end_time": "2026-11-11T12:03:18+00:00",
"capacity": 7,
"filled": 0,
"remaining": 7,
"created_at": "2026-08-11T19:40:10+00:00",
"updated_at": "2026-08-11T19:40:10+00:00"
},
{
"id": "019ff256-ece3-71d3-9837-86f2def299f7",
"event_id": "019ff256-ece2-72fd-a632-a99f903028ee",
"title": "Grill Master",
"location": null,
"is_virtual": false,
"start_time": "2026-08-21T21:50:57+00:00",
"end_time": "2026-08-21T23:50:57+00:00",
"capacity": 2,
"filled": 0,
"remaining": 2,
"created_at": "2026-08-11T19:40:10+00:00",
"updated_at": "2026-08-11T19:40:10+00:00"
}
]
}{
"message": "Not found."
}Authorizations
Create a token under Organization settings → API. Tokens are shown once, on creation. They belong to the organization, not to you, so they keep working if you leave the team. API access is included on every plan; the rate limit depends on the plan.
Response
Show child attributes
Show child attributes
Example:
[
{
"id": "019ff256-ece1-7285-a9b8-fd63c10f3523",
"event_id": "019ff256-ece0-71db-8091-6beb3a342329",
"title": "Setup Team",
"location": null,
"is_virtual": false,
"start_time": "2026-11-11T10:03:18+00:00",
"end_time": "2026-11-11T12:03:18+00:00",
"capacity": 7,
"filled": 0,
"remaining": 7,
"created_at": "2026-08-11T19:40:10+00:00",
"updated_at": "2026-08-11T19:40:10+00:00"
},
{
"id": "019ff256-ece3-71d3-9837-86f2def299f7",
"event_id": "019ff256-ece2-72fd-a632-a99f903028ee",
"title": "Grill Master",
"location": null,
"is_virtual": false,
"start_time": "2026-08-21T21:50:57+00:00",
"end_time": "2026-08-21T23:50:57+00:00",
"capacity": 2,
"filled": 0,
"remaining": 2,
"created_at": "2026-08-11T19:40:10+00:00",
"updated_at": "2026-08-11T19:40:10+00:00"
}
]
⌘I

