Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Education / edoobox API
edoobox API logo

edoobox API

✓ Official Vendor SpecEducationLmsbearer2 EndpointsREST

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.

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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the edoobox API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the edoobox 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.

1

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 | sh
2

Step 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 instance

Jentic 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.

Capabilities

What an agent can do with edoobox 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

Use Cases

Patterns agents use edoobox 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.

Key Endpoints

2 endpoints — edoobox is a swiss-built course-and-event booking platform used by schools, training providers, and seminar organisers.

METHOD

PATH

DESCRIPTION

POST

/auth

Authenticate and get an access token

GET

/offer/list

List all offers

POST

/auth

Authenticate and get an access token

GET

/offer/list

List all offers

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

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

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

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.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

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.

Alternative

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.

Complementary

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.

FAQs

Specific to using edoobox 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.

GET STARTED

Start building with edoobox API

Explore with Jentic
View OpenAPI Document