Discover/Cvent API
live

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.

Endpoint health
verified 1h ago
list_sessions
list_speakers
2/2 passing latest checkself-healing
Endpoints
2
Updated
2h ago

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.

This call costs5 credits / call— charged only on success
Try it
Event-local calendar day (Mountain Time) to restrict sessions to, ISO date YYYY-MM-DD. Omitted = all days of the event.
1-based page number over the filtered session list.
Sessions per page; the site serves at most 50 per page, larger values are clamped.
Case-insensitive free-text search across session name, description and speaker names. Double quotes and backslashes are not accepted. Omitted = no text filter.
api.parse.bot/scraper/97056120-2462-47ce-afb4-c90d6e0f892f/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
Python SDK · recommended

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")
All endpoints · 2 totalmissing one? ·

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.

Input
ParamTypeDescription
datestringEvent-local calendar day (Mountain Time) to restrict sessions to, ISO date YYYY-MM-DD. Omitted = all days of the event.
pageinteger1-based page number over the filtered session list.
limitintegerSessions per page; the site serves at most 50 per page, larger values are clamped.
querystringCase-insensitive free-text search across session name, description and speaker names. Double quotes and backslashes are not accepted. Omitted = no text filter.
Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
1h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a custom event schedule app showing sessions filtered by day using the date parameter
  • 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, and photo URL
  • 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
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 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.

Frequently asked questions
Does Cvent offer an official developer API?+
Cvent offers a developer platform with documented REST APIs at developer.cvent.com, primarily aimed at event management integrations. However, those APIs require a Cvent account and are not publicly accessible for reading arbitrary event agendas. This Parse API covers the public-facing agenda for the specific eXpcon Salt Lake City 2026 event without requiring Cvent credentials.
How does `list_sessions` handle filtering by day, and what does the response confirm about pagination?+
Pass a 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?+
No. The API covers agenda sessions (via 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?+
The 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.
Can I retrieve sessions for events other than eXpcon Salt Lake City 2026?+
Not currently. Both endpoints are scoped to the eXpcon Salt Lake City 2026 agenda specifically. You can fork this API on Parse and revise it to point at a different Cvent-hosted event URL if you need agenda data for another event.
Page content last updated . Spec covers 2 endpoints from event-guestside-app-pr50.cvent-production.cvent.cloud.
Related APIs in EntertainmentSee all →
attend.expowest.com API
Find speaker and exhibitor information from Natural Products Expo West, including names, titles, and company details to research attendees and discover industry contacts. Search and filter through the event directory to identify potential networking opportunities and business partners.
10times.com API
Search and discover events from 10times.com, including conferences, trade shows, and exhibitions worldwide. Access detailed event data such as exhibitor lists, schedules, agendas, and venue information.
mwcbarcelona.com API
Discover and explore MWC Barcelona 2026 exhibitors, speakers, and sessions by searching, filtering, and browsing by category, location, or type. Access detailed information about pavilions, agenda schedules, news updates, and pass options to plan your conference experience.
confex.com API
Access detailed conference schedules, presenter information, and session details from Confex-hosted events, including the ability to browse conferences, search sessions by day or topic, and view speaker profiles. Find specific papers, track meeting calendars, and discover available symposia all in one place.
vividseats.com API
Search for events, venues, and performers, then browse current ticket listings with detailed seat information and pricing to find the perfect show. Analyze historical sales data to track ticket price trends and make informed purchasing decisions.
seatgeek.com API
Search for events and performers, view ticket listings with pricing data, and explore venue information across multiple event categories. Get real-time insights into event details, ticket price trends, and what's currently trending to help you find and compare tickets.
peerspace.com API
Search and explore Peerspace venue listings by location and activity type. Retrieve paginated search results with pricing, ratings, capacity, and amenities, then fetch full listing details including equipment, host information, and availability.
eventup.com API
Search EventUp for event venues by city, browse featured venues, fetch available venue filter facets for a location, and get autocomplete suggestions for venue and place queries.