Cvent APIevent-guestside-app-pr50.cvent-production.cvent.cloud ↗
Access agenda sessions and speaker profiles for eXpcon Salt Lake City 2026 (Oct 6–9). Filter by date, search by keyword, paginate results.
What is the Cvent API?
This API exposes two endpoints covering the full agenda and speaker directory for the eXpcon Salt Lake City 2026 event. list_sessions returns paginated session records with scheduling in both UTC and Mountain Time, location, category, HTML and plain-text descriptions, and embedded speaker details. list_speakers delivers the complete speaker roster — over the entire four-day event — sorted by last name with biographies, social links, and each speaker's assigned sessions.
curl -X GET 'https://api.parse.bot/scraper/97056120-2462-47ce-afb4-c90d6e0f892f/list_sessions?page=3&limit=50' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace event-guestside-app-pr50-cvent-production-cvent-cloud-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: eXpcon Salt Lake City Agenda — sessions, speakers, search."""
from parse_apis.event_guestside_app_pr50_cvent_production_cvent_cloud_api import (
Expcon,
InputFormatInvalid,
)
client = Expcon()
# Browse the first few sessions across all event days.
for session in client.sessions.list(limit=5):
print(session.name, session.date_local, session.duration_minutes)
# Search sessions by keyword, capped to one page of results.
result = client.sessions.list(query="luxury", limit=3).first()
if result is not None:
print(result.name, result.start_time_utc, result.location)
# Each session carries its assigned speakers inline.
for spk in result.speakers:
print(" ", spk.full_name, spk.title, spk.company)
# Filter sessions to a specific event day; handle bad date format.
try:
for session in client.sessions.list(date="2026-10-07", limit=5):
print(session.name, session.category, session.in_person)
except InputFormatInvalid:
print("date rejected — use YYYY-MM-DD")
# Full speaker directory with each speaker's session assignments.
for speaker in client.speakers.list(limit=5):
session_names = [s.name for s in speaker.sessions or []]
print(speaker.full_name, "—", ", ".join(session_names))
print("exercised: sessions.list / speakers.list")
Returns one page of agenda sessions for the event, ordered by start date and time, each with its schedule (UTC and event-local Mountain Time), category, location, description (HTML and plain text) and the list of speakers assigned to it (names, title, company, biography, photo). Optional filters: a single event-local date (YYYY-MM-DD) and a free-text search matched against session name, description and speaker names, mirroring the agenda page's date tabs and search box. Paging is by page number: page defaults to 1 and limit defaults to 50 (values above 50 are clamped to 50); total_count is the site's count of sessions matching the filters and has_more tells whether a further page exists. A date or search that matches nothing returns an empty sessions array with total_count 0. Speakers are nested per session; use list_speakers for the event-wide speaker directory.
| Param | Type | Description |
|---|---|---|
| date | string | Event-local calendar day (Mountain Time) to restrict sessions to, ISO date YYYY-MM-DD. Omitted = all days of the event. |
| page | integer | 1-based page number over the filtered session list. |
| limit | integer | Sessions per page; the site serves at most 50 per page, larger values are clamped. |
| query | string | Case-insensitive free-text search across session name, description and speaker names. Double quotes and backslashes are not accepted. Omitted = no text filter. |
{
"type": "object",
"fields": {
"date": "the date filter applied, or null",
"page": "integer, the page returned",
"limit": "integer, effective page size after clamping",
"query": "the search text applied, or null",
"has_more": "boolean, whether a further page exists",
"sessions": "array of session records: session_id, name, description_html, description_text, start_time_utc, end_time_utc, start_time_local, end_time_local (ISO 8601 with offset), date_local, timezone (IANA name), duration_minutes, code, category_id, category, location, featured, in_person, virtual, capacity_total, capacity_available (null when the site publishes no capacity), tags, custom_fields (array of {value} such as breakout path labels), speakers (array of speaker records as in list_speakers, without the sessions list)",
"total_count": "integer, site-reported number of sessions matching the filters"
},
"sample": {
"data": {
"date": "2026-10-07",
"page": 1,
"limit": 50,
"query": "luxury",
"has_more": false,
"sessions": [
{
"code": null,
"name": "High-Net-Worth Mastery: eXp Luxury + Sports & Entertainment Certification",
"tags": [],
"virtual": false,
"category": "Certification",
"featured": false,
"location": null,
"speakers": [
{
"title": "Serial Entrepreneur, Chairman of VaynerX, CEO of VaynerMedia",
"prefix": "",
"company": "",
"websites": [],
"biography": "Gary Vaynerchuk is a serial entrepreneur and CEO of VaynerMedia...",
"full_name": "Gary Vaynerchuk",
"last_name": "Vaynerchuk",
"first_name": "Gary",
"speaker_id": "e3775c79-e33b-401e-9970-b3a4290b77d0",
"twitter_url": null,
"facebook_url": null,
"linkedin_url": null,
"profile_picture_url": "https://custom.cvent.com/.../1d14de7f2a7b4a138c9e7e7cc23e76b4.png"
}
],
"timezone": "America/Denver",
"in_person": true,
"date_local": "2026-10-07",
"session_id": "1c885e30-bd66-45c5-91da-0190fbc9f082",
"category_id": "2c727b2e-f95b-40d6-8fab-0c8cb8316e57",
"end_time_utc": "2026-10-07T17:00:00.000Z",
"custom_fields": [],
"capacity_total": null,
"end_time_local": "2026-10-07T11:00:00-06:00",
"start_time_utc": "2026-10-07T15:00:00.000Z",
"description_html": "<div><p>Designed for agents looking to dominate the high-end real estate market...</p></div>",
"description_text": "Designed for agents looking to dominate the high-end real estate market...",
"duration_minutes": 120,
"start_time_local": "2026-10-07T09:00:00-06:00",
"capacity_available": null
}
],
"total_count": 2
},
"status": "success"
}
}About the Cvent API
Session Data
The list_sessions endpoint returns one page of agenda sessions ordered by start time. Each session record includes session_id, name, description_html, description_text, start_time_utc, end_time_utc, start_time_local, end_time_local, category, location, and an inline array of assigned speakers. The date parameter (ISO format YYYY-MM-DD, Mountain Time) restricts results to a single day. The query parameter performs case-insensitive free-text search across session name, description, and speaker names. Pagination is controlled via page (1-based) and limit (capped at 50); the response includes has_more and total_count so you can walk all pages programmatically.
Speaker Directory
The list_speakers endpoint returns the full event speaker directory — every speaker assigned to at least one session — sorted alphabetically by last name. Each record includes speaker_id, first_name, last_name, full_name, prefix, title, company, biography, a photo URL, social_links, and a sessions array listing each session the speaker appears in with session_id, name, event-local start_time_local, end_time_local, date, location, and category. The sessions_scanned and sessions_complete fields confirm whether the full agenda was traversed to build the directory.
Coverage and Freshness
All data reflects the published agenda for eXpcon Salt Lake City, October 6–9, 2026. Session times are provided in both UTC and event-local Mountain Time. Speaker biographies may be an empty string when the source has not yet published one. There are no inputs on list_speakers — it always returns the complete roster in a single call.
The Cvent API is a managed, monitored endpoint for event-guestside-app-pr50.cvent-production.cvent.cloud — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when event-guestside-app-pr50.cvent-production.cvent.cloud changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official event-guestside-app-pr50.cvent-production.cvent.cloud API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a custom event schedule app showing sessions filtered by day using the
dateparameter - Search across all sessions by speaker name to find every appearance of a specific presenter
- Display speaker profile cards using
full_name,title,company,biography, andphotoURL - Cross-reference sessions with their speakers to map which topics a given company representative is covering
- Export a structured JSON agenda for eXpcon 2026 with full scheduling metadata in Mountain Time
- Identify session locations and categories to generate a room-by-room schedule view
- Populate a speaker directory page with social links and per-speaker session lists from
list_speakers
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 req/min |
Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Cvent offer an official developer API?+
How does `list_sessions` handle filtering by day, and what does the response confirm about pagination?+
date string in YYYY-MM-DD format (Mountain Time) to restrict results to one calendar day of the event. The response echoes back the date filter applied, the effective limit after clamping to the 50-per-page maximum, the page returned, total_count (site-reported matching sessions), and has_more (boolean) so you can determine whether to request the next page.Does the API cover event registration, ticketing, or attendee data?+
list_sessions) and the speaker directory (via list_speakers). Registration status, ticket types, attendee lists, and capacity figures are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting any publicly accessible registration or capacity data the event page exposes.What happens when a speaker biography has not been published yet?+
biography field in both list_sessions speaker records and list_speakers speaker records returns an empty string when the source has not published one. The speaker will still appear in results with all other available fields populated, so you can handle the empty biography case in your client without it blocking rendering of names, titles, companies, or photos.