For Agents
Read cruise travel advisor users, profiles, bookings, and trips through a small, single-key API surface.
Get started with Cruisen 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 my upcoming cruise trips"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Cruisen API 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
List every cruise trip belonging to the advisor
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 document for Cruisen API, keeping it validated and agent-ready.
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.
Get full trip itinerary detail by trip ID
Patterns agents use Cruisen API 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.
Cruisen Public API
Same vendor surface published under the firebase production host.
Pick this entry when the agent already resolves the cruisen.com brand domain; functionally equivalent.
Cruise Control API
Customer review automation for after-cruise feedback.
Use Cruise Control to send post-cruise review requests after pulling Cruisen booking data.
Crustdata API
External enrichment data for traveller or company profiles.
Pair with Cruisen when the agent needs richer profile context than Cruisen stores natively.
Specific to using Cruisen API 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