canonical: https://jentic.com/apis/webinarjam.com/webinarjam

# WebinarJam API

The WebinarJam API allows you to manage webinars, register participants, retrieve registrant and attendee data, and manage lead subscriptions on the WebinarJam platform. All requests use POST method with form-urlencoded body and require an API key passed in the request body. The API exposes 6 endpoints.

## For AI agents

Programmatically list all webinars, get webinar details. Covers 6 operations.

## Scope

Does not handle communications, crm, or developer tools - use for payments only.

## Capabilities

- List all webinars
- Get webinar details
- Register a participant
- Unsubscribe a registrant
- Monitor WebinarJam API operational status and events

## Use cases

### Payments Operations

Use the WebinarJam API to perform payments operations programmatically. The API provides 6 endpoints covering core functionality including list all webinars, get webinar details, register a participant.

Example prompt: Call POST /webinarjam/webinars to list all webinars

### Automated webinarjam Management

Automate webinarjam operations by combining multiple WebinarJam API endpoints. Agents can get webinar details and then register a participant in a single workflow.

Example prompt: Call POST /webinarjam/webinar to get webinar details, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call WebinarJam API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle none tokens manually.

Example prompt: Search Jentic for 'list all webinars', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | /webinarjam/webinars | List all webinars |
| POST | /webinarjam/webinar | Get webinar details |
| POST | /webinarjam/register | Register a participant |
| POST | /webinarjam/registrants | List registrants for a webinar |
| POST | /webinarjam/unsubscribe | Unsubscribe a registrant |
| POST | /webinarjam/countries | List supported countries |

## Key resources

- **webinarjam** — Operations related to webinarjam

## Why Jentic

- **Setup:** Wiring the WebinarJam API by hand means pointing at api.webinarjam.com, shaping its webinar and registrant requests, and handling responses yourself. Through Jentic you install once, import the WebinarJam API from the API Directory, configure it once, and your agent calls it.
- **Permission scoping:** WebinarJam carries its target in the request body rather than in the URL path, so limit the agent to the operations it needs, such as listing webinars or registering an attendee. You choose the operations it may call, so state-changing ones like unsubscribing an attendee are not included unless you add them.
- **Credential handling:** Any account values this API needs are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'list all webinars' or 'register an attendee', and Jentic returns the matching WebinarJam operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Stripe** — Alternative payments API
- **Adyen** — Alternative payments API
- **Square** — Complementary payments API
- **Paypal** — Complementary payments API

## FAQ

### What authentication does the WebinarJam API use?

The WebinarJam API uses no authentication. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.

### Can I list all webinars with the WebinarJam API?

Yes. Use the POST /webinarjam/webinars endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the WebinarJam API?

Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.

### How do I list all webinars through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'list all webinars'. Jentic returns the matching WebinarJam API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the WebinarJam API have?

The WebinarJam API exposes 6 endpoints covering webinarjam operations.

### Can I limit what my agent is allowed to do with the WebinarJam API?

Yes. Jentic One is self-hosted by you, so your own rules decide which WebinarJam operations and credentials the agent may use. Because this API carries its target in the request body rather than the URL path, you scope the agent to just the operations it needs, such as listing webinars or registering an attendee. State-changing operations like unsubscribing an attendee are not available to the agent unless you explicitly add them.
