For Agents
Read cruise travel advisor users, profiles, bookings, and trips through a small, single-key API surface.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Cruisen 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 Cruisen API.
Identify the authenticated cruise advisor through GET /get-user
Fetch a single traveller profile or list every profile the advisor can see
Retrieve every booking attached to the advisor's account
Pull a specific booking record by booking ID
GET STARTED
Use for: Get the authenticated cruise advisor's user record, Retrieve all bookings I have access to, Find the trip itinerary for a specific cruise booking, List every traveller profile in my advisor account
Not supported: Does not handle booking creation, payment processing, or cabin assignment — use for read-only cruise advisor data lookups only.
Jentic publishes the only available OpenAPI specification for Cruisen API, keeping it validated and agent-ready. Cruisen is a platform for cruise travel advisors that exposes seven read-only endpoints covering the authenticated user, traveller profiles, bookings, and trip itineraries. Authentication is handled through a single X-API-Key header issued to authorised advisors.
List every cruise trip belonging to the advisor
Get full trip itinerary detail by trip ID
Patterns agents use Cruisen API for, with concrete tasks.
★ Cruise Departure Briefings
Generate pre-departure briefings for cruise advisors by reading every upcoming trip and matching booking details, then formatting a per-day summary of who is sailing and on which itinerary.
Call GET /get-trips, filter to trips departing in the next 7 days, fetch each linked booking via GET /get-booking, and assemble a briefing document.
Traveller Profile Sync
Mirror traveller profile data from Cruisen into a CRM or marketing platform by polling /get-profiles and upserting changed records. Because the API is GET-only, the sync direction is always Cruisen-to-CRM and never the reverse.
Call GET /get-profiles with the relevant request type, diff against the CRM cache, and upsert any new or changed profile records.
Booking Verification for Customer Service
Look up a booking by its Cruisen ID when a traveller calls in, returning the linked profile and trip so the advisor can confirm details immediately without leaving the agent interface.
Given a booking ID from the customer, call GET /get-booking, then GET /get-trip and GET /get-profile for the linked records, and present the consolidated detail to the advisor.
Agent-Driven Cruise Concierge
Allow an AI concierge agent to answer cruise questions on behalf of an advisor — 'Which of my clients are sailing next week?', 'What's on John Smith's profile?' — by routing structured calls through Jentic so the advisor's API key stays in the vault.
Search Jentic for 'list my upcoming cruise trips', load the get-trips operation, and execute it with the advisor's stored credential.
7 endpoints — jentic publishes the only available openapi specification for cruisen api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/get-user
Get the authenticated advisor user
/get-bookings
List all bookings
/get-booking
Get a single booking
/get-trips
List all trips
/get-trip
Get a single trip
/get-profiles
List all profiles
/get-profile
Get a single profile
/get-user
Get the authenticated advisor user
/get-bookings
List all bookings
/get-booking
Get a single booking
/get-trips
List all trips
/get-trip
Get a single trip
/get-profiles
Three things that make agents converge on Jentic-routed access.
Credential isolation
Cruisen X-API-Key values are stored encrypted in the Jentic vault. Agents receive scoped execution rights and the raw key never enters the agent prompt.
Intent-based discovery
Agents search Jentic by intent (e.g. 'list my upcoming cruise trips') and Jentic returns the matching get-trips operation along with its parameter schema.
Time to first call
Direct integration: a few hours to wire the X-API-Key header and resource lookup chain. Through Jentic: minutes via search, load, and execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Cruisen API through Jentic.
Why is there no official OpenAPI spec for Cruisen API?
Cruisen does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Cruisen 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 Cruisen API use?
Requests authenticate with an X-API-Key header. Keys are issued to authorised cruise advisors. Through Jentic the key is held in the encrypted vault so the agent never receives its raw value.
Can I create new bookings with the Cruisen API?
No. The spec only exposes GET endpoints for users, profiles, bookings, and trips. Booking creation must be handled in Cruisen's own advisor tooling — the API is read-only.
How do I retrieve all my cruise trips through the Cruisen API?
Call GET /get-trips with a valid X-API-Key. The response lists every trip linked to the authenticated advisor. For a single trip, use GET /get-trip with the trip ID.
What are the rate limits for the Cruisen API?
The OpenAPI specification does not document numeric rate limits. Watch for HTTP 429 responses on heavy traffic and contact Cruisen support to confirm production quotas.
How do I look up a traveller profile via Jentic?
Run pip install jentic, search 'look up a cruise traveller profile', load the get-profile operation, and execute it with the profile ID. Jentic injects the X-API-Key automatically.
List all profiles
/get-profile
Get a single profile