EverWebinar

Create Pre-Recorded Evergreen Webinars

Go to site
Explore
/
Apps
/
EverWebinar

EverWebinar API Integrations

Build and run workflows using the EverWebinar API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

  • Register new users for webinars
  • Get information about upcoming webinars
  • Purchase webinars
  • Get information about previous webinars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    everwebinar: {
      type: "app",
      app: "everwebinar",
    }
  },
  async run({steps, $}) {
    const data = {
      "api_key": `${this.everwebinar.$auth.api_key}`,
    }
    return await axios($, {
      url: `https://api.webinarjam.com/everwebinar/webinars`,
      data,
    })
  },
})

Choose an API to Connect with EverWebinar API

1
-
12
of
1000+
apps by most popular

Authentication

EverWebinar uses API keys for authentication. When you connect your EverWebinar account, Pipedream securely stores the keys so you can easily authenticate to EverWebinar APIs in both code and no-code steps.

Your API Key can be found in your main webinar dashboard, by clicking on the Advanced link for any of your webinars. You don’t need a new API Key for each webinar, since the Key is global for your entire account.