Create automated, like-live, and just-in-time webinar funnels in minutes on the same platform trusted by over 12,000 businesses.
Go to siteThe WebinarKit API provides programmable hooks into WebinarKit's suite, enabling automation of webinar management tasks like creating webinars, registering participants, and sending out reminders. With Pipedream, you can craft workflows that react to various triggers, such as new registrant sign-ups or attendee data, and connect these events to hundreds of other apps. This integration can vastly improve the efficiency of your webinar operations by automating repetitive tasks, collecting data, and nurturing leads with minimal manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
webinarkit: {
type: "app",
app: "webinarkit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://webinarkit.com/api/webinars`,
headers: {
Authorization: `Bearer ${this.webinarkit.$auth.api_key}`,
},
})
},
})
Automate Webinar Registrations: When a new attendee signs up for a webinar via a third-party form, you can use Pipedream to automatically register them in WebinarKit, ensuring all attendees are captured in one centralized location.
Post-Webinar Engagement: After a webinar concludes, trigger an automated workflow in Pipedream that segments attendees based on their interaction during the webinar and sends personalized follow-up emails through an email marketing service like Mailchimp.
Sync Webinar Data to CRM: Use Pipedream to listen for new webinar sign-ups or attendee engagement and automatically update contact records in a CRM like Salesforce, attaching webinar participation as a custom field to help sales teams tailor their outreach.
Triggered when a new webinar is created. See the documentation
Lists all scheduled sessions for a specific webinar. See the documentation
Registers a new attendee for a specific webinar. See the documentation
WebinarKit uses API keys for authentication. When you connect your WebinarKit account, Pipedream securely stores the keys so you can easily authenticate to WebinarKit APIs in both code and no-code steps.
Sign in and copy your API key at bottom of the Settings page under the “API access” section.