For Agents
Read and manage Eventscase events, attendees, sessions, and registrations for syncing event data into CRMs, BI tools, and AI agents.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Eventscase API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Eventscase API API.
Retrieve events and individual event detail from Eventscase
List attendees per event and read individual attendee records
Manage the session schedule attached to each event
Read and update registration records by ID
GET STARTED
Use for: List all Eventscase events for our organisation, Get the attendee list for the user conference, Retrieve session schedule for event 'evt_2026', I want to read a specific registration record
Not supported: Does not handle payment processing, badge printing, or marketing email delivery — use for Eventscase event, attendee, session, and registration data only.
The Eventscase API gives event organisers programmatic access to events, attendees, sessions, and registrations on the Eventscase platform. With 13 operations across 8 paths it covers reading and managing events, listing and updating attendees, working with the session schedule, and tracking registrations. Authentication is via API key, and the API is well suited to syncing event data into CRMs, BI tools, and AI agents that answer attendee or schedule questions.
Mirror Eventscase event data into a CRM or analytics warehouse
Power assistants that answer schedule and attendance questions
Patterns agents use Eventscase API API for, with concrete tasks.
★ Eventscase to CRM Sync
Mirror Eventscase attendees and registrations into Salesforce or HubSpot so commercial teams can act on signups while events are still live. The /attendees and /registrations endpoints provide the canonical lists, and the per-record reads give the structured payloads needed for CRM upserts. A working sync takes a day to wire up and runs continuously thereafter.
List attendees for event 'evt_2026' and upsert each one as a contact in HubSpot, tagging them with the event name
Schedule and Attendance Reporting
Produce sponsor and internal reports that combine the Eventscase session schedule with attendance numbers, so organisers know which sessions performed best. The /sessions and /attendees endpoints expose the structured data needed to build dashboards in Looker, Power BI, or Metabase. Reports are refreshed in minutes per cycle.
For event 'evt_2026', pull every session and the matching attendee count, then post a summary report to the #events Slack channel
Live Event Assistant
Power a chatbot that answers attendee questions like 'when is the AI keynote?' or 'is there a workshop on observability?' by calling the Eventscase sessions endpoint. The chatbot ships in hours when wired through a managed integration layer rather than directly against the API. This keeps on-site support staff focused on harder problems.
Call GET /sessions filtered by event ID and respond to 'when is the AI keynote at the user conference?' with start time and room
AI Agent Integration via Jentic
Connect Eventscase to an internal AI agent through Jentic so non-technical staff can pull attendee lists, schedule data, or registration counts in chat. Jentic handles credential isolation and intent search, so the API key never enters the model context. Set up takes minutes once Eventscase is connected.
Search Jentic for 'list eventscase attendees', load the operation, and answer 'how many people have registered for event evt_2026?'
13 endpoints — the eventscase api gives event organisers programmatic access to events, attendees, sessions, and registrations on the eventscase platform.
METHOD
PATH
DESCRIPTION
/events
List events
/events/{eventId}
Get a single event
/attendees
List attendees
/attendees/{attendeeId}
Get a single attendee
/sessions
List sessions
/registrations
List registrations
/registrations/{registrationId}
Get a single registration
/events
List events
/events/{eventId}
Get a single event
/attendees
List attendees
/attendees/{attendeeId}
Get a single attendee
/sessions
List sessions
/registrations
List registrations
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Eventscase API key is stored encrypted in the Jentic vault. Agents call operations through scoped execution tokens, so the raw key never enters the model context.
Intent-based discovery
Agents search Jentic by intent (e.g., 'list eventscase attendees') and Jentic returns the matching operation with its schema, so the agent calls the right endpoint without browsing docs.
Time to first call
Direct integration: 1-2 days for sync, retries, and key rotation. Through Jentic: under 30 minutes from sign-up to first executed call.
Alternatives and complements available in the Jentic catalogue.
Cvent API
Enterprise event management with venue sourcing and travel
Choose Cvent for global enterprise event programmes that need procurement and travel beyond Eventscase's scope.
Swoogo API
Event registration and microsite platform aimed at marketers
Pick Swoogo if branded registration sites and marketing microsites are central to the workflow.
Mailchimp Marketing API
Send pre-event and post-event email campaigns to Eventscase attendees
Use Mailchimp downstream of Eventscase to nurture registered attendees with reminders and follow-ups.
Salesforce API
Push Eventscase attendees into Salesforce as leads or contacts
Use Salesforce when commercial follow-up requires deal pipeline and account hierarchy beyond what Eventscase provides.
Specific to using Eventscase API API through Jentic.
What authentication does the Eventscase API use?
The Eventscase API uses an API key (ApiKeyAuth scheme). Through Jentic, the key is stored in the encrypted vault and injected at execution time, so it never appears in the agent's context or logs.
Can I list attendees per event with the Eventscase API?
Yes. GET /attendees returns attendees and GET /attendees/{attendeeId} reads an individual record. Combine with /events to scope by event when running cross-event reports.
What are the rate limits for the Eventscase API?
The OpenAPI spec does not declare explicit rate limits. Treat the API as standard for event SaaS, back off on HTTP 429 responses, and consult Eventscase developer documentation for current published limits.
How do I pull session schedules through Jentic?
Search Jentic for 'eventscase sessions', load the GET /sessions operation, and execute it filtered by event ID. Install with pip install jentic and use the async search, load, execute pattern.
Does the Eventscase API support reading registration records?
Yes. GET /registrations lists registrations and GET /registrations/{registrationId} reads a single record. This is the basis for CRM sync and reporting flows.
/registrations/{registrationId}
Get a single registration