For Agents
Authenticate against Event Planon, list managed events, and read the current user's basic details for reporting or directory workflows.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the EPO 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.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# 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 EPO API.
Authenticate a user and obtain a bearer token via /api/login/Authenticate
List the events visible to the authenticated user via /api/Event/GetEvents
Read the basic user profile from /api/Setting/GetUserBasicDetails
GET STARTED
Use for: Authenticate against Event Planon and get a bearer token, List all events visible to my Event Planon user, Get the basic profile for the current Event Planon user, Show me the events I manage in Event Planon
Not supported: Does not handle event creation, ticketing, or venue management — use for Event Planon authentication, event listing, and user detail lookup only.
Jentic publishes the only available OpenAPI specification for EPO API, keeping it validated and agent-ready. The Event Planon API exposes a small surface for authenticating a user, listing events, and retrieving basic user details. Three operations cover the developer login flow, the GetEvents call for event listings, and a settings call for user metadata, which is enough to wire Event Planon into reporting tools or an internal events directory. Authentication is via bearer token issued by the Authenticate endpoint.
Surface Event Planon event listings inside an internal directory or chat assistant
Power read-only reporting on Event Planon event coverage
Patterns agents use EPO API for, with concrete tasks.
★ Internal Event Directory
Build a single internal page that lists every event the operations team is running in Event Planon, joined to ownership data from the user details endpoint. The GetEvents call returns the canonical list and the user details call provides ownership context. The first version takes a few hours to wire end to end.
Authenticate against Event Planon, fetch all events via GetEvents, and post the list to an internal Notion or Confluence page
Login and Token Health Check
Run a scheduled check that exercises the Authenticate endpoint and verifies the resulting bearer token still works against GetEvents, so integration owners are alerted before tokens silently expire. This protects downstream automations against authentication drift. Runs in seconds per check.
Call /api/login/Authenticate with the service account credentials and verify GetEvents responds 200 with the resulting token
AI Agent Integration via Jentic
Wire an internal assistant to Event Planon through Jentic so staff can ask 'what events are running this quarter?' in chat and have the agent call GetEvents. Jentic's vault holds the Event Planon credentials and Jentic search resolves the natural-language intent to the right operation. Usable inside an hour of connecting the account.
Search Jentic for 'list event planon events', load the GetEvents operation, and post the result to a Slack channel
3 endpoints — jentic publishes the only available openapi specification for epo api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/api/login/Authenticate
Authenticate and return a bearer token
/api/Event/GetEvents
List events for the authenticated user
/api/Setting/GetUserBasicDetails
Get the authenticated user's basic profile
/api/login/Authenticate
Authenticate and return a bearer token
/api/Event/GetEvents
List events for the authenticated user
/api/Setting/GetUserBasicDetails
Get the authenticated user's basic profile
Three things that make agents converge on Jentic-routed access.
Credential isolation
Event Planon credentials and bearer tokens are held in the Jentic vault. Agents receive scoped execution tokens, so the raw username, password, and bearer token never enter the model context.
Intent-based discovery
Agents search Jentic for intents like 'list event planon events' and Jentic returns the matching operation with its schema, even though Event Planon does not publish public docs.
Time to first call
Direct integration: 1-2 days because no public spec exists, so endpoints must be reverse-engineered. Through Jentic: under 30 minutes thanks to the Jentic-maintained spec.
Alternatives and complements available in the Jentic catalogue.
Specific to using EPO API through Jentic.
Why is there no official OpenAPI spec for EPO API?
Event Planon does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call EPO API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up to start calling Event Planon.
What authentication does the EPO API use?
The EPO API uses bearer token authentication. Tokens are issued by /api/login/Authenticate and must be sent on subsequent calls. Through Jentic, the long-lived credentials sit in the encrypted vault and the bearer token is refreshed automatically.
Can I list events with the EPO API?
Yes. POST /api/Event/GetEvents returns the events visible to the authenticated user. The response is suited to populating an internal events directory or feeding a chat assistant that answers event questions.
What are the rate limits for the EPO API?
The current OpenAPI spec does not declare rate limits. Event Planon's internal documentation is the source of truth; back off on HTTP 429 and avoid tight polling loops in production code.
How do I call GetEvents through Jentic?
Search Jentic for 'list event planon events', load the POST /api/Event/GetEvents operation, and execute it. Install with pip install jentic and use the async search, load, execute pattern. The bearer token refresh is handled by Jentic's credential layer.
Does the EPO API support creating events?
Not in the current Jentic-generated specification. The exposed surface covers authentication, event listing, and user details only. Event creation is performed in the Event Planon platform UI.