Upcoming Talks WIP

GET /v1/talks/upcoming

Get the list of upcoming live talks and replays.

Attributes

page number, default is 1
Specify which page to query, the minimum value is 1, default value is 1.

limit number
Number of items that should be returned per page, maximum is 50.

Sample request params

{
  page: 1,
  limit: 25
}

Returns

Returns a list of talks and the number of pages available if the request succeeded.

items array of object

List of matching items (talks).

talk attributes
talk.id string
Unique identifier of the talk

talk.title string

talk.description string

talk.start string
Start date and time of the talk to iso format.

talk.timezone string
Timezone where the talk will take place.

talk.track string

talk.tags array of string

talk.speakers string

List of talk speakers.

speaker attributes
speaker.firstName string

speaker.lastName string

speaker.job string

speaker.company string

speaker.tags array of string


talk.featured boolean
Indicates if the talk is highlighted.

pages number
Total number of pages available.

Sample response

{
  items: [
    {
      "id": "6627cb4d6f1f3e2d6cf414bb",
      "title": "Test Talk",
      "description": "Lorem ipsum",
      "start": "2025-05-01T08:00:00.000Z",
      "timezone": "Europe/Paris",
      "speakers": [
        {
          "firstName": "John",
          "lastName": "Doe",
          "job": "Developer"
          "company": "MySuperCompany",
          "tags": [
            "Host",
            "Mentor"
          ]
        }
      ],
      "track": "Main stage",
      "tags": [
        "Webinar"
      ]
      "featured": true
    }
  ],
  pages: 2
}