Find an API

Search public APIs with auth details & Postman guides

← All APIs

GoToWebinar

getgo · Company

Company No Auth Free & Open API

The GoToWebinar API provides seamless integration of webinar registrant and attendee data into your existing infrastructure or third-party applications. The ability to register participants, as well as pull lists of registrants and attendees for a webinar, allows organizers to manage the flow of information between their primary applications without manual intervention.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get all webinars for an account

Retrieves the list of webinars for an account within a given date range. __*Page*__ and __*size*__ parameters are optional. Default __*page*__ is 0 and default __*size*__ is 20. For technical reasons, this call cannot be executed from this documentation. Please use the curl command to execute it.

https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/accounts/{accountKey}/webinars?page=1&size=10&toTime=example&fromTime=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Authorization example
curl -X GET "https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/accounts/{accountKey}/webinars?page=1&size=10&toTime=example&fromTime=example" \
  -H "Authorization: example"
import requests
params = {
    "page": "1",
    "size": "10",
    "toTime": "example",
    "fromTime": "example"
}
headers = {
    "Authorization": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/accounts/{accountKey}/webinars",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/accounts/{accountKey}/webinars');
url.searchParams.set('page', '1');
url.searchParams.set('size', '10');
url.searchParams.set('toTime', 'example');
url.searchParams.set('fromTime', 'example');

const response = await fetch(url, {
  headers: {
    'Authorization': 'example'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/accounts/{accountKey}/webinars")
	q := baseURL.Query()
	q.Set("page", "1")
	q.Set("size", "10")
	q.Set("toTime", "example")
	q.Set("fromTime", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)
	req.Header.Set("Authorization", "example")

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/accounts/{accountKey}/webinars")
uri.query = URI.encode_www_form({
  "page" => "1",
  "size" => "10",
  "toTime" => "example",
  "fromTime" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)
req["Authorization"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/accounts/{accountKey}/webinars?" . http_build_query([
    "page" => "1",
    "size" => "10",
    "toTime" => "example",
    "fromTime" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
    "header" => implode("\r\n", [
        "Authorization: example"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get historical webinars

Returns details for completed webinars for the specified organizer and completed webinars of other organizers where the specified organizer is a co-organizer.

https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/historicalWebinars?toTime=example&fromTime=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Authorization example
curl -X GET "https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/historicalWebinars?toTime=example&fromTime=example" \
  -H "Authorization: example"
import requests
params = {
    "toTime": "example",
    "fromTime": "example"
}
headers = {
    "Authorization": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/historicalWebinars",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/historicalWebinars');
url.searchParams.set('toTime', 'example');
url.searchParams.set('fromTime', 'example');

const response = await fetch(url, {
  headers: {
    'Authorization': 'example'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/historicalWebinars")
	q := baseURL.Query()
	q.Set("toTime", "example")
	q.Set("fromTime", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)
	req.Header.Set("Authorization", "example")

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/historicalWebinars")
uri.query = URI.encode_www_form({
  "toTime" => "example",
  "fromTime" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)
req["Authorization"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/historicalWebinars?" . http_build_query([
    "toTime" => "example",
    "fromTime" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
    "header" => implode("\r\n", [
        "Authorization: example"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get organizer sessions

Retrieve all completed sessions of all the webinars of a given organizer.

https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/sessions?toTime=example&fromTime=example

Hover any highlighted part to learn what it does

Headers — extra info sent with the request
Authorization example
curl -X GET "https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/sessions?toTime=example&fromTime=example" \
  -H "Authorization: example"
import requests
params = {
    "toTime": "example",
    "fromTime": "example"
}
headers = {
    "Authorization": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/sessions",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/sessions');
url.searchParams.set('toTime', 'example');
url.searchParams.set('fromTime', 'example');

const response = await fetch(url, {
  headers: {
    'Authorization': 'example'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/sessions")
	q := baseURL.Query()
	q.Set("toTime", "example")
	q.Set("fromTime", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)
	req.Header.Set("Authorization", "example")

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/sessions")
uri.query = URI.encode_www_form({
  "toTime" => "example",
  "fromTime" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)
req["Authorization"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/getgo.com/gotowebinar/1.0.0/organizers/{organizerKey}/sessions?" . http_build_query([
    "toTime" => "example",
    "fromTime" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
    "header" => implode("\r\n", [
        "Authorization: example"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with GoToWebinar?

GoToWebinar is a Company API. Developers commonly use company APIs for:

  • enriching CRM records with company firmographics
  • building lead-generation and prospecting tools
  • verifying business identity and registration details
  • monitoring competitors and market intelligence
  • powering B2B data enrichment pipelines

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. GoToWebinar is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗