curl --request GET \
--url https://api.zuddl.com/v1/events/{eventId}/sessions \
--header 'Authorization: <api-key>'{
"pagination": {
"next": "/{apiEndpoint}?page=3",
"current": "/{apiEndpoint}?page=2",
"previous": "/{apiEndpoint}?page=1"
},
"data": [
{
"kind": "<string>",
"url": "<string>",
"id": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"title": "Maximize Your Potential: Strategies for Success in a Digital World",
"description": "<p>Join us for an engaging online session designed to equip you with practical tools and insights for thriving in today's fast-paced, technology-driven environment.</p>",
"startDateTime": "2025-03-14T05:55:00Z",
"endDateTime": "2025-03-14T05:55:00Z",
"location": [
{
"locationId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"locationName": "Session location",
"type": "STAGE",
"link": "<string>"
}
],
"speakers": [
{
"speakerId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"url": "<string>"
}
],
"sponsors": [
{
"sponsorId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"url": "<string>"
}
],
"tags": [
"tag1",
"tag2"
],
"files": [
{
"fileId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"fileName": "Presentation",
"fileUrl": "https://phoenixlive.imgix.net/9807c938-413f-4a18-8f22-c3ac150f1e61"
}
],
"availableSpots": 100,
"externalRefId": "d812a64f8865428990249a120792c3d8",
"parentSessionId": "d812a64f8865428990249a120792c3d8"
}
]
}Use this endpoint to retrieve the list of all sessions in a particular event type in your Zuddl organization. You can use query parameters such as filter, pagination, or sort to customize the response
Required API key scopes: READ
curl --request GET \
--url https://api.zuddl.com/v1/events/{eventId}/sessions \
--header 'Authorization: <api-key>'{
"pagination": {
"next": "/{apiEndpoint}?page=3",
"current": "/{apiEndpoint}?page=2",
"previous": "/{apiEndpoint}?page=1"
},
"data": [
{
"kind": "<string>",
"url": "<string>",
"id": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"title": "Maximize Your Potential: Strategies for Success in a Digital World",
"description": "<p>Join us for an engaging online session designed to equip you with practical tools and insights for thriving in today's fast-paced, technology-driven environment.</p>",
"startDateTime": "2025-03-14T05:55:00Z",
"endDateTime": "2025-03-14T05:55:00Z",
"location": [
{
"locationId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"locationName": "Session location",
"type": "STAGE",
"link": "<string>"
}
],
"speakers": [
{
"speakerId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"url": "<string>"
}
],
"sponsors": [
{
"sponsorId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"url": "<string>"
}
],
"tags": [
"tag1",
"tag2"
],
"files": [
{
"fileId": "d5e31ba5-2d1e-4918-bb60-dd1514b4b397",
"fileName": "Presentation",
"fileUrl": "https://phoenixlive.imgix.net/9807c938-413f-4a18-8f22-c3ac150f1e61"
}
],
"availableSpots": 100,
"externalRefId": "d812a64f8865428990249a120792c3d8",
"parentSessionId": "d812a64f8865428990249a120792c3d8"
}
]
}Provide your API key secret in the Authorization header
Unique identifier of the event
Filter query in format:
Available filters:
Sort query in format:
The following fields are sortable:
Page number (default: 1)
Page size (default: 10, max: 50)
List of sessions retrieved successfully
Show child attributes
URI of the next page. Also indicates the presence of a next page.
"/{apiEndpoint}?page=3"
URI of the current page.
"/{apiEndpoint}?page=2"
URI of the previous page. Also indicates the presence of a previous page.
"/{apiEndpoint}?page=1"
Show child attributes
Unique identifier of the session
"d5e31ba5-2d1e-4918-bb60-dd1514b4b397"
Name of the session
"Maximize Your Potential: Strategies for Success in a Digital World"
Description of the session
"<p>Join us for an engaging online session designed to equip you with practical tools and insights for thriving in today's fast-paced, technology-driven environment.</p>"
Start date time of the session
"2025-03-14T05:55:00Z"
End date time of the session
"2025-03-14T05:55:00Z"
Location details of the session
Show child attributes
Unique identifier of the session location
"d5e31ba5-2d1e-4918-bb60-dd1514b4b397"
Name of the session location
"Session location"
Type of the session venue
STAGE, SESSION, NETWORKING, EXPO, LOBBY, SCHEDULE, ROOMS, IN_PERSON, NONE, STUDIO Link of the session location
Tags of the session
Tags of the session
["tag1", "tag2"]Files of the session
Show child attributes
Number of available spots for the session
100
A reference ID that you can use to map this session to your external systems or databases
"d812a64f8865428990249a120792c3d8"
Parent session ID of the session
"d812a64f8865428990249a120792c3d8"
Was this page helpful?