For Agents
Authenticate against an edoobox tenant and list its bookable course and event offers. Useful for agents that surface or shop for training courses.
Get started with edoobox 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 edoobox course and event offers"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with edoobox API API.
Authenticate to an edoobox tenant and receive a bearer access token
List the catalogue of course and event offers configured in an edoobox account
Surface bookable training and seminar offers inside an external website or agent
Pull the latest offer catalogue on a schedule to keep partner sites in sync with edoobox
GET STARTED
Use for: I need to list all bookable course offers in my edoobox account, Authenticate to edoobox and get an access token for follow-up calls, Search for available training courses in an edoobox tenant, Find offers configured in edoobox so I can show them on my website
Not supported: Does not handle booking creation, payment processing, attendee management, or course content delivery — use for authenticating to edoobox and listing bookable offers only.
edoobox is a Swiss-built course-and-event booking platform used by schools, training providers, and seminar organisers. The v2 API exposes a focused integration surface: authenticate to obtain a bearer token, then list the offers (courses, events, and bookable services) available in your edoobox account. It is designed for partners and integrators who need to surface bookable offers in their own websites, agent assistants, or marketing automation without manually copying course catalogues.
Patterns agents use edoobox API API for, with concrete tasks.
★ Embed edoobox course catalogue on a partner site
A training provider wants its public website to show the live catalogue of courses configured in edoobox so visitors always see current dates and availability. A scheduled job authenticates against the edoobox API, lists offers, and pushes the result into the website's CMS or static site generator. Because the API is just two endpoints, the connector is easy to build and maintain.
POST /auth with the API credentials to get a bearer token, then GET /offer/list with that token and write the response into the website's course catalogue store.
Course discovery agent for learners
A conversational agent helps prospective learners find suitable courses inside a training provider's edoobox tenant. The agent authenticates once per session, lists offers, and filters them by topic, language, or date based on the user's natural-language request. Even though edoobox itself handles registration in its UI, the API gives the agent the catalogue it needs to recommend the right course.
Authenticate via POST /auth, call GET /offer/list, and return the three closest matches to the learner's stated topic and preferred date range.
Marketing automation sync
A marketing team needs the latest list of bookable seminars in their email and ad campaigns. An automation calls the edoobox API on a daily cadence and refreshes the list of offers in the marketing platform's product catalogue, so audience segments and dynamic content stay accurate. Agents using Jentic can run the same flow end-to-end without writing a custom client.
Search Jentic for 'list edoobox offers', load the schema, execute the call, and push the resulting offer list into the marketing platform's catalogue.
2 endpoints — edoobox is a swiss-built course-and-event booking platform used by schools, training providers, and seminar organisers.
METHOD
PATH
DESCRIPTION
/auth
Authenticate and get an access token
/offer/list
List all offers
/auth
Authenticate and get an access token
/offer/list
List all offers
Three things that make agents converge on Jentic-routed access.
Credential isolation
edoobox API credentials are stored encrypted in the Jentic vault (MAXsystem). Jentic performs the /auth exchange, holds the bearer token, and injects it into /offer/list calls — agents only ever receive scoped execution access.
Intent-based discovery
Agents search Jentic by intent, for example 'list course offers in edoobox', and Jentic returns the GET /offer/list operation with its schema. The agent does not need to handle the bearer-token exchange manually.
Time to first call
Direct integration: 1-2 days to wire up the auth exchange, token refresh, and response model. Through Jentic: under 30 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Calendly API
Calendly schedules individual appointments rather than managing course-and-seminar catalogues, but is a common alternative for simple booking flows.
Choose Calendly when the workflow only needs 1:1 appointment scheduling rather than a multi-session course catalogue.
Teachable API
Teachable hosts on-demand courses; choose it when the offering is digital course content rather than instructor-led sessions.
Pick Teachable for self-paced course delivery; pick edoobox for live, bookable instructor-led sessions.
Brevo API
Brevo (formerly Sendinblue) sends booking confirmations and reminders alongside an edoobox catalogue feed.
Use with edoobox when the agent should email or SMS learners after surfacing or selecting an offer.
Specific to using edoobox API API through Jentic.
What authentication does the edoobox API use?
edoobox uses HTTP bearer authentication. You first POST API credentials to /auth to receive an access token, then send that token in the Authorization: Bearer header on calls to /offer/list. Jentic stores the credentials encrypted and injects the bearer token at execution time.
Can I list bookable courses with the edoobox API?
Yes. GET /offer/list returns the catalogue of offers — courses, events, and bookable services — configured in the authenticated edoobox tenant.
Does the edoobox API support creating bookings or registrations?
No. The published v2 spec only exposes /auth and /offer/list. Booking creation continues to happen through the edoobox web UI or other vendor-specific endpoints not covered by this spec.
What are the rate limits for the edoobox API?
Rate limits are not declared in the spec. Because the offer list is a relatively static resource per tenant, cache the response between syncs and avoid polling more frequently than once an hour.
How do I retrieve edoobox offers through Jentic?
Run pip install jentic, search Jentic for 'list edoobox offers', load the operation schema, and execute the call. Jentic handles the /auth exchange and forwards the resulting bearer token to /offer/list, returning the offer list to the agent.
Which edoobox server should I use, app1 or app2?
The spec lists app2.edoobox.com as the primary v2 server with app1.edoobox.com as a secondary. Use the host that edoobox assigned to your tenant when your account was provisioned.