For Agents
Pull event, attendee, order, and ticket-type data from a Billetweb organiser account for reporting, CRM sync, and check-in workflows.
Get started with Billetweb API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"list attendees for an event in billetweb"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Billetweb API API.
List every event in a Billetweb organiser account and read individual event detail
Pull the attendee list for a specific event and look up individual attendees by ID
List orders associated with an event for sales reporting
Read ticket types configured on an event to map pricing and inventory
GET STARTED
Use for: I need to fetch the attendee list for an event on Billetweb, I want to list every event in our Billetweb organiser account, Get the orders for a specific event, Retrieve the ticket types configured on an event
Not supported: Does not handle ticket purchase, payment processing, or webhook subscriptions — use for read-only event, attendee, and order reporting only.
Jentic publishes the only available OpenAPI document for Billetweb API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Billetweb API, keeping it validated and agent-ready. Billetweb is a French event ticketing platform and this API is a read-oriented surface that lets organisers pull events, ticket types, attendees, and orders into external dashboards. Agents can list every event in the account, drill into a specific event for its attendees and orders, and look up an individual attendee or order by ID. The seven-endpoint surface keeps the integration narrow and predictable for reporting and CRM sync.
Look up an individual order by ID for support and reconciliation workflows
Patterns agents use Billetweb API API for, with concrete tasks.
★ Attendee export for check-in
Pull the attendee list for a specific event into a check-in app or spreadsheet ahead of the door opening. The API exposes GET /events/{eventId}/attendees which returns the per-event roster, and GET /attendees/{attendeeId} for individual lookups when staff need to verify a single ticket. A small events team can power a check-in workflow without exporting CSVs from the Billetweb web UI.
Call GET /events/{eventId}/attendees for event ID 12345 and return name and ticket type for each attendee
Sales reporting across events
Aggregate ticket sales across an organiser's full event programme for a weekly report. The agent calls GET /events to enumerate events, then GET /events/{eventId}/orders for each, summing order totals and attendee counts. Useful for organisers who run a programme of small events and need a single view of revenue.
Call GET /events, then for each call GET /events/{eventId}/orders and return total orders and ticket count per event
CRM enrichment from attendee data
Pipe Billetweb attendee data into a CRM so sales and marketing have context on customers who have attended past events. The agent uses GET /events/{eventId}/attendees to retrieve attendees per event, then matches those records against existing CRM contacts. Ticket-type tagging from GET /events/{eventId}/tickets adds segmentation for downstream campaigns.
Call GET /events/{eventId}/attendees and GET /events/{eventId}/tickets, then build a tag list of attendees by ticket type for the CRM
Order lookup for support
Resolve a buyer's question about a specific order without leaving the support tool. The agent calls GET /orders/{orderId} with the order ID provided by the customer to return the matching event, attendee, and ticket-type detail. Pair with GET /attendees/{attendeeId} when the question is about a specific ticket holder.
Call GET /orders/{orderId} for order ID 99887 and return the matching event ID, attendee count, and total amount
Agent-driven event reporting via Jentic
An AI agent uses Jentic to discover Billetweb operations from intents like 'list attendees for an event' or 'get sales for an event'. Jentic returns the matching GET operation, loads its schema, and executes with the bearer token from the vault. The agent can build a multi-event report without ever holding the raw token directly.
Search Jentic for 'list attendees for an event in billetweb', load the schema, and execute it for event ID 12345
7 endpoints — jentic publishes the only available openapi specification for billetweb api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/events
List events
/events/{eventId}
Get an individual event
/events/{eventId}/attendees
List attendees for an event
/events/{eventId}/orders
List orders for an event
/events/{eventId}/tickets
List ticket types for an event
/attendees/{attendeeId}
Get an individual attendee
/orders/{orderId}
Get an individual order
/events
List events
/events/{eventId}
Get an individual event
/events/{eventId}/attendees
List attendees for an event
/events/{eventId}/orders
List orders for an event
/events/{eventId}/tickets
List ticket types for an event
Three things that make agents converge on Jentic-routed access.
Credential isolation
Billetweb bearer tokens grant read access across the organiser account. Jentic keeps the token encrypted in the vault and only releases a scoped reference at execution time, so a leaked agent context cannot enumerate attendees.
Intent-based discovery
Agents search intents like 'list attendees for an event' or 'get sales for an event' and Jentic returns the matching Billetweb operation with its input schema, so the agent does not need to read undocumented endpoints.
Time to first call
Direct Billetweb integration: half a day to wire up bearer auth and pagination across the seven endpoints. Through Jentic: under 15 minutes to the first attendee list pulled.
Alternatives and complements available in the Jentic catalogue.
Billetto
Billetto is a wider European ticketing API with audience and webhook features.
Choose Billetto when you need webhooks, target groups, and BI reports; choose Billetweb when a smaller read-only surface is enough for reporting.
Ticketmaster Discovery
Ticketmaster Discovery exposes large-venue inventory.
Choose Ticketmaster Discovery for major-venue event search; choose Billetweb for self-organised French-market events.
Shopify
Shopify can sell merchandise alongside event tickets handled by Billetweb.
Use Shopify alongside Billetweb when an event has a merch storefront separate from ticket sales.
Specific to using Billetweb API API through Jentic.
Why is there no official OpenAPI spec for Billetweb API?
Billetweb does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Billetweb 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.
What authentication does the Billetweb API use?
Billetweb uses HTTP bearer-token authentication. Pass the token in the Authorization: Bearer header on every request. Through Jentic the bearer token sits encrypted in the vault and the agent only ever holds a scoped reference.
Can I export attendees from this API?
Yes. Call GET /events/{eventId}/attendees to retrieve every attendee on a specific event, and GET /attendees/{attendeeId} for an individual lookup. The endpoints return enough identity and ticket-type detail to populate a check-in tool or CRM contact.
How do I pull event sales through Jentic?
Search Jentic for 'list orders for a billetweb event'. Jentic returns the GET /events/{eventId}/orders operation, loads its schema, and your agent calls it with the event ID. Pair with GET /events to enumerate events first when reporting across the full programme.
What rate limits apply to the Billetweb API?
The published spec does not document specific rate limits. The endpoint surface is read-only and small (7 endpoints), so polling at modest intervals is generally safe; for high-volume reporting use GET /events/{eventId}/orders with pagination rather than per-attendee fan-out.
Is the Billetweb API free?
API access is included with Billetweb organiser accounts at no extra cost. You need an active organiser account and a bearer token issued from the Billetweb dashboard. Jentic does not add usage charges on top.
/attendees/{attendeeId}
Get an individual attendee
/orders/{orderId}
Get an individual order