Skip to main content
GET
/
v1
/
events
/
{eventId}
/
speakers
/
{speakerId}
Get speaker details
curl --request GET \
  --url https://api.zuddl.com/v1/events/{eventId}/speakers/{speakerId} \
  --header 'Authorization: <api-key>'
{
  "kind": "<string>",
  "url": "<string>",
  "id": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d",
  "speakerOrder": 123,
  "profile": {
    "firstName": "Alice",
    "lastName": "Smith",
    "bio": "Alice is a renowned expert...",
    "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"
}

Authorizations

Authorization
string
header
required

Provide your API key secret in the Authorization header

Path Parameters

eventId
string
required

Unique identifier of the event

speakerId
string
required

Unique identifier of the speaker

Response

Speaker details retrieved successfully

kind
string
url
string<uri>
id
string<uuid>

Unique identifier of the speaker

Example:

"4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d"

speakerOrder
integer

Order of appearance for this speaker

profile
object

Speaker profile information

Speaker's social and website links

sessions
object[]

Sessions where this speaker appears

externalRefId
string

A reference ID that you can use to map this speaker to your external systems or databases

Example:

"d812a64f8865428990249a120792c3d8"

⌘I