• Method: POST
  • Complete URL: https://api.webinarjam.com/everwebinar/webinars

The request must include all of the required fields, based on the table below:

NameValue
api_key*string(64)

* Required fields

The response body will be a JSON object containing an array of webinars. Each webinar object will contain:

NameTypeDescription
webinar_idintegerWebinar ID
webinar_hash *stringWebinar Hash
namestringWebinar Name (Private)
titlestringWebinar Title (Public)
descriptionstringWebinar Description
schedulesarrayEmpty for right now
timezonestringWebinar timezone

* webinar_hash: this parameter is used in case you want your API to be able to generate the webinar's one-click registration link.

Example CURL request

curl --data "api_key=demokey" https://api.webinarjam.com/everwebinar/webinars

Example return

{
"status": "success",
"webinars": [
{
"webinar_id": 9,
"webinar_hash": "tuvw1234",
"name": "Demo6",
"title": "Demo6",
"description": "My automated webinar",
"schedules": [
"Instant replay",
"Just in time",
"Every day, 01:00 PM",
"Every Monday, 02:00 PM",
"Saturday, 6 Jan 2024, 03:00 PM"
],
"timezone": "America/Los_Angeles"
}
]
}