curl --request POST \
--url https://public-api.sessionboard.com/v1/event/{eventId}/sessions \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"filters": {
"createdAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"updatedAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"isAbstract": true
},
"sort": {},
"expand": []
}
'import requests
url = "https://public-api.sessionboard.com/v1/event/{eventId}/sessions"
payload = {
"filters": {
"createdAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"updatedAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"isAbstract": True
},
"sort": {},
"expand": []
}
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
filters: {
createdAt: {before: '2023-11-07T05:31:56Z', after: '2023-11-07T05:31:56Z'},
updatedAt: {before: '2023-11-07T05:31:56Z', after: '2023-11-07T05:31:56Z'},
isAbstract: true
},
sort: {},
expand: []
})
};
fetch('https://public-api.sessionboard.com/v1/event/{eventId}/sessions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://public-api.sessionboard.com/v1/event/{eventId}/sessions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'filters' => [
'createdAt' => [
'before' => '2023-11-07T05:31:56Z',
'after' => '2023-11-07T05:31:56Z'
],
'updatedAt' => [
'before' => '2023-11-07T05:31:56Z',
'after' => '2023-11-07T05:31:56Z'
],
'isAbstract' => true
],
'sort' => [
],
'expand' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://public-api.sessionboard.com/v1/event/{eventId}/sessions"
payload := strings.NewReader("{\n \"filters\": {\n \"createdAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"updatedAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"isAbstract\": true\n },\n \"sort\": {},\n \"expand\": []\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://public-api.sessionboard.com/v1/event/{eventId}/sessions")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"filters\": {\n \"createdAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"updatedAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"isAbstract\": true\n },\n \"sort\": {},\n \"expand\": []\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.sessionboard.com/v1/event/{eventId}/sessions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"filters\": {\n \"createdAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"updatedAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"isAbstract\": true\n },\n \"sort\": {},\n \"expand\": []\n}"
response = http.request(request)
puts response.read_body{
"results": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"friendly_id": "SESS-8",
"friendly_id_raw": 8,
"title": "Networking",
"description": "<p>Networking session description</p>",
"status": "accepted",
"starts_at": "2024-03-15T09:00:00Z",
"ends_at": "2024-03-15T10:00:00Z",
"is_public": true,
"created_at": "2024-01-10T14:30:00Z",
"updated_at": "2024-03-01T09:15:00Z",
"ceu_credits": 1.5,
"capacity": 200,
"language": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"event_id": 42,
"name": "English",
"order": 0,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
},
"track": {
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"event_id": 42,
"name": "Artificial Intelligence & ML",
"color": "#329af0",
"order": 1,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
},
"level": {
"id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"name": "Beginner",
"order": 2,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
},
"format": {
"id": "d4e5f6a7-b8c9-0123-def0-234567890123",
"name": "Session"
},
"room": {
"id": "e5f6a7b8-c9d0-1234-ef01-345678901234",
"name": "Workshop Room 1",
"order": 3,
"capacity": 120,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
},
"tags": [],
"speakers": [],
"content": [],
"custom_fields": [],
"admin_url": "https://app.sessionboard.com/event/42/sessions/497f6eca-6276-4993-bfeb-53cbbbba6f08"
}
],
"pagination": {
"currentPage": 1,
"pageSize": 25,
"totalPages": 4,
"totalResults": 97
}
}Search sessions
Search and filter sessions within an event. Supports pagination, sorting, filtering by status and date ranges, and expanding related data.
Every session includes is_abstract and composition_status. Pass
filters.isAbstract to return only abstract submissions or only
program sessions. By default, sessions linked as composition sources
are excluded; pass expand=linked_sources to include them. Pass
expand=composition for full target/source details.
Each session in the response includes a subsessions array. By
default each subsession is returned in a minimal shape (Subsession).
Pass expand=subsession_details in the request body to receive full
parent-shape parity (SubsessionDetailed) on every subsession —
including status, custom_status, custom_fields, chairpersons,
moderators, sponsors, exhibitors, tags, language, track,
level, room, etc.
Each subsession inherits the parent session’s is_abstract,
composition_status, and optional composition graph (when
expand=composition is set).
Nested language, track, level, format, and room objects on
each session include the field sets documented on the Session schema.
Unassigned metadata is returned as {}.
Paginated search responses return matching sessions under results
(not data), alongside a pagination object.
curl --request POST \
--url https://public-api.sessionboard.com/v1/event/{eventId}/sessions \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"filters": {
"createdAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"updatedAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"isAbstract": true
},
"sort": {},
"expand": []
}
'import requests
url = "https://public-api.sessionboard.com/v1/event/{eventId}/sessions"
payload = {
"filters": {
"createdAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"updatedAt": {
"before": "2023-11-07T05:31:56Z",
"after": "2023-11-07T05:31:56Z"
},
"isAbstract": True
},
"sort": {},
"expand": []
}
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
filters: {
createdAt: {before: '2023-11-07T05:31:56Z', after: '2023-11-07T05:31:56Z'},
updatedAt: {before: '2023-11-07T05:31:56Z', after: '2023-11-07T05:31:56Z'},
isAbstract: true
},
sort: {},
expand: []
})
};
fetch('https://public-api.sessionboard.com/v1/event/{eventId}/sessions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://public-api.sessionboard.com/v1/event/{eventId}/sessions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'filters' => [
'createdAt' => [
'before' => '2023-11-07T05:31:56Z',
'after' => '2023-11-07T05:31:56Z'
],
'updatedAt' => [
'before' => '2023-11-07T05:31:56Z',
'after' => '2023-11-07T05:31:56Z'
],
'isAbstract' => true
],
'sort' => [
],
'expand' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://public-api.sessionboard.com/v1/event/{eventId}/sessions"
payload := strings.NewReader("{\n \"filters\": {\n \"createdAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"updatedAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"isAbstract\": true\n },\n \"sort\": {},\n \"expand\": []\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://public-api.sessionboard.com/v1/event/{eventId}/sessions")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"filters\": {\n \"createdAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"updatedAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"isAbstract\": true\n },\n \"sort\": {},\n \"expand\": []\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.sessionboard.com/v1/event/{eventId}/sessions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"filters\": {\n \"createdAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"updatedAt\": {\n \"before\": \"2023-11-07T05:31:56Z\",\n \"after\": \"2023-11-07T05:31:56Z\"\n },\n \"isAbstract\": true\n },\n \"sort\": {},\n \"expand\": []\n}"
response = http.request(request)
puts response.read_body{
"results": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"friendly_id": "SESS-8",
"friendly_id_raw": 8,
"title": "Networking",
"description": "<p>Networking session description</p>",
"status": "accepted",
"starts_at": "2024-03-15T09:00:00Z",
"ends_at": "2024-03-15T10:00:00Z",
"is_public": true,
"created_at": "2024-01-10T14:30:00Z",
"updated_at": "2024-03-01T09:15:00Z",
"ceu_credits": 1.5,
"capacity": 200,
"language": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"event_id": 42,
"name": "English",
"order": 0,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
},
"track": {
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"event_id": 42,
"name": "Artificial Intelligence & ML",
"color": "#329af0",
"order": 1,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
},
"level": {
"id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"name": "Beginner",
"order": 2,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
},
"format": {
"id": "d4e5f6a7-b8c9-0123-def0-234567890123",
"name": "Session"
},
"room": {
"id": "e5f6a7b8-c9d0-1234-ef01-345678901234",
"name": "Workshop Room 1",
"order": 3,
"capacity": 120,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
},
"tags": [],
"speakers": [],
"content": [],
"custom_fields": [],
"admin_url": "https://app.sessionboard.com/event/42/sessions/497f6eca-6276-4993-bfeb-53cbbbba6f08"
}
],
"pagination": {
"currentPage": 1,
"pageSize": 25,
"totalPages": 4,
"totalResults": 97
}
}Authorizations
Organization API token. Generate from Organization Settings → API Tokens.
Path Parameters
The event ID.
Query Parameters
Page number for pagination.
1 <= x <= 999Number of results per page.
1 <= x <= 100
