Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Ticketbud 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://jentic.com/install.sh?src=apis&api=%2Fapis%2Fticketbud.com%2Fticketbud" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fticketbud.com%2Fticketbud" | 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 Ticketbud API.
Get current user
List events
Check in a ticket
Query and filter Ticketbud API records by parameters
Monitor Ticketbud API operational status and events
GET STARTED
Patterns agents use Ticketbud API for, with concrete tasks.
★ Identity and Authentication Operations
Use the Ticketbud API to perform identity auth operations programmatically. The API provides 9 endpoints covering core functionality including get current user, list events, get a single event.
Call GET /me.json to get current user
Automated User Management
Automate user operations by combining multiple Ticketbud API endpoints. Agents can list events and then get a single event in a single workflow.
Call GET /events.json to list events, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Ticketbud 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 oauth2 tokens manually.
Search Jentic for 'get current user', load the operation schema, and execute with Jentic-managed credentials
9 endpoints — the ticketbud api allows you to access event and ticket data from ticketbud.
METHOD
PATH
DESCRIPTION
/me.json
Get current user
/events.json
List events
/events/{id}.json
Get a single event
/events/{id}/totals.json
Get event totals
/events/{event_id}/tickets.json
List tickets for an event
/events/{event_id}/tickets/{id}.json
Get a single ticket
/events/{event_id}/tickets/{id}/check_in.json
Check in a ticket
/events/{event_id}/ticket_sales
Get ticket sales
/me.json
Get current user
/events.json
List events
/events/{id}.json
Get a single event
/events/{id}/totals.json
Get event totals
/events/{event_id}/tickets.json
List tickets for an event
/events/{event_id}/tickets/{id}.json
Get a single ticket
/events/{event_id}/tickets/{id}/check_in.json
Check in a ticket
/events/{event_id}/ticket_sales
Get ticket sales
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Ticketbud API by hand means running its OAuth2 authorization-code flow, holding the access token, and building the event and ticket calls yourself. Through Jentic you install once, import the Ticketbud API from the API Directory, store the token once, and your agent calls it.
Permission scoping
Ticketbud puts the event and ticket ids in the URL path (/events/{event_id}/tickets/{id}), so a rule can pin your agent to one event: it can read that event, its totals, and its tickets and nothing else. You choose the operations it may call, so a state change like checking in a ticket is not included unless you add it.
Credential isolation
Your Ticketbud token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'list my events' or 'check in a ticket', and Jentic returns the matching Ticketbud API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Ticketbud API through Jentic.
What authentication does the Ticketbud API use?
The Ticketbud API uses OAuth 2.0 for authorization. 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 get current user with the Ticketbud API?
Yes. Use the GET /me.json endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Ticketbud 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 get current user through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'get current user'. Jentic returns the matching Ticketbud API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Ticketbud API have?
The Ticketbud API exposes 9 endpoints covering user, events, tickets operations.
Can I limit what my agent is allowed to do with the Ticketbud API?
Yes. Ticketbud puts the event and ticket ids in the URL path, so a rule in your self-hosted Jentic One instance can pin your agent to a single event, letting it read that event, its totals, and its tickets and nothing else. You decide which operations the agent may call, so a state-changing action like the PUT check-in on a ticket is excluded unless you explicitly add it. Because Jentic One is run by you, your own rules and stored credentials govern every call the agent makes.
For Agents
Programmatically get current user, list events. Covers 9 operations with oauth2 authentication.
Use for: I need to current user, I want to events, Search for a single event, Find all event totals
Not supported: Does not handle payments, communications, or crm - use for identity and authentication only.
The Ticketbud API allows you to access event and ticket data from Ticketbud. Authenticate using OAuth 2.0 to access events, tickets, check-in functionality, and sales data. The API exposes 9 endpoints secured with oauth2 authentication.