v1

latestOpenAPI 3.1.02026-07-22285495.1 KB
Speakers

Get all speaker details

Use this endpoint to retrieve the details of all speakers added to 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

get/v1/events/{eventId}/speakers

Path parameters

eventIdstring required

Unique identifier of the event

Query parameters

filterstring

Filter query in format:

Available filters:

  • profile.company: operations [like]
sortstring

Sort query in format:

The following fields are sortable:

  • speakerOrder
  • profile.firstName
pagenumber

Page number (default: 1)

sizenumber

Page size (default: 10, max: 50)

Response

List of speakers retrieved successfully

Example response

{
  "pagination": {
    "next": "/{apiEndpoint}?page=3",
    "current": "/{apiEndpoint}?page=2",
    "previous": "/{apiEndpoint}?page=1"
  },
  "data": [
    {
      "id": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d",
      "profile": {
        "firstName": "Alice",
        "lastName": "Smith",
        "bio": "<p>Alice is a <strong>renowned expert</strong>...</p>",
        "company": "Tech Innovators Inc.",
        "designation": "Chief Technology Officer",
        "headline": "Visionary Leader in Tech",
        "picUrl": "https://example.com/speakers/alice.jpg"
      },
      "socialLinks": {
        "linkedInProfile": "https://linkedin.com/in/alicesmith",
        "twitterProfile": "https://twitter.com/alicesmith",
        "facebookProfile": "https://facebook.com/alicesmith",
        "websiteUrl": "https://alicesmith.com"
      },
      "sessions": [
        {
          "sessionId": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c4f",
          "url": "/api/v1/events/evt-abc123xyz/sessions/seg-123432"
        }
      ],
      "externalRefId": "d812a64f8865428990249a120792c3d8"
    }
  ]
}