For Agents
Manage short-term rental properties, reservations, and guest profiles in Jurny from code or an AI agent.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Jurny 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 Jurny API.
Create new short-term rental properties via POST /properties with address and configuration data
List the property portfolio with GET /properties for syncing inventory to channel managers
Retrieve a single property's full record using GET /properties/{property_id}
GET STARTED
Use for: I need to add a new vacation rental property to Jurny, List all properties in my portfolio, Create a reservation for guest John Smith from June 1 to June 7, Get the full details for property 'prop-42'
Not supported: Does not handle payment capture, channel-listing distribution, or smart-lock device control — use for property, reservation, and guest data only.
Jentic publishes the only available OpenAPI specification for Jurny API, keeping it validated and agent-ready. Jurny is a vacation rental and short-term rental operations platform. The API exposes endpoints to create and list properties, manage reservations, and look up guest profiles, giving property managers a programmatic surface for the same data the Jurny dashboard surfaces. It is suited for syncing inventory and bookings between Jurny and external channel managers, accounting tools, or guest-facing apps.
Create reservations against a property through POST /reservations
List reservations across the portfolio with GET /reservations for revenue and occupancy reporting
Pull guest profile detail with GET /guests/{guest_id} to populate CRM or check-in flows
Patterns agents use Jurny API for, with concrete tasks.
★ Channel-Manager Booking Sync
Property managers using Airbnb or Booking.com alongside Jurny need new reservations to land in Jurny without manual entry. A worker reads bookings from each channel and POSTs them via /reservations on Jurny, then GET /reservations confirms the create. This keeps cleaning and check-in workflows aligned with the actual booking calendar.
For each new Airbnb booking, call POST /reservations with the property_id, guest detail, and check-in/out dates, then GET /reservations to confirm the booking exists.
Owner Portfolio Onboarding
When a new owner brings a portfolio of homes onto Jurny, the operations team scripts the onboarding by POSTing each property to /properties with address, room counts, and amenities. GET /properties is then used to verify the import matches the source spreadsheet. A 50-property portfolio can be onboarded in minutes rather than a day of dashboard clicking.
For each row in 'new-owner-portfolio.csv', call POST /properties with the address and bedroom count, then GET /properties to verify all rows imported.
Guest CRM Hydration
Concierge teams want a unified guest profile for every reservation, including past stays. GET /guests/{guest_id} returns the guest record, which a CRM hydrator merges with reservation history from /reservations. The result is a single guest view used to personalise check-in, upsell, and follow-up.
For each reservation in the next 7 days, fetch the guest with GET /guests/{guest_id} and write a unified record to the CRM with name, email, and prior stay count.
Agent-Driven Booking Assistant
An AI assistant for a property manager can book a stay on a specific property via Jentic. The agent searches 'create a reservation', loads POST /reservations, and executes with property and guest detail provided in the conversation. This puts a Jurny booking action behind a chat prompt without exposing the manager's API key.
Through Jentic, search 'create a reservation', load POST /reservations, and execute with property_id 'prop-42', guest 'jane@example.com', check-in '2026-07-10', check-out '2026-07-15'.
6 endpoints — jentic publishes the only available openapi specification for jurny api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/properties
Create a short-term rental property
/properties
List properties in the portfolio
/properties/{property_id}
Retrieve a specific property
/reservations
Create a reservation for a property
/reservations
List reservations
/guests/{guest_id}
Retrieve a guest profile
/properties
Create a short-term rental property
/properties
List properties in the portfolio
/properties/{property_id}
Retrieve a specific property
/reservations
Create a reservation for a property
/reservations
List reservations
Three things that make agents converge on Jentic-routed access.
Credential isolation
Jurny API keys are stored in the Jentic vault and surfaced to agents as a scoped session token, so the property-manager credential never appears in agent prompts or logs.
Intent-based discovery
Agents search by intent (e.g. 'create a reservation' or 'list my properties') and Jentic returns the matching Jurny operation and its input schema, skipping a docs hunt across the 6-endpoint surface.
Time to first call
Direct Jurny integration: 1-2 days for auth, error handling, and reservation payload shaping. Through Jentic: under 1 hour to search, load schema, and execute the first reservation.
Alternatives and complements available in the Jentic catalogue.
Stripe API
Pair Jurny reservations with Stripe to capture deposits and final payments.
Use Stripe alongside Jurny when reservations need to drive payment intents, deposits, and refund flows beyond what Jurny handles natively.
Specific to using Jurny API through Jentic.
Why is there no official OpenAPI spec for Jurny API?
Jurny does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Jurny 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 Jurny API use?
The Jurny API uses an API key authentication scheme. The key is sent on every request and identifies the property-management account. Through Jentic the key is held in the encrypted vault and never exposed to the agent runtime.
Can I create reservations programmatically with the Jurny API?
Yes. POST /reservations creates a booking against a property with guest detail and dates, and GET /reservations lists existing bookings for confirmation or reporting.
What are the rate limits for the Jurny API?
Jurny applies per-account rate limits that vary with plan tier; the spec does not pin a fixed value. Use exponential backoff on 429 responses and cache property lookups when iterating large portfolios.
How do I add a new property to Jurny through Jentic?
Search Jentic for 'create a vacation rental property', load POST /properties, and execute with the address and configuration. Jentic returns the new property_id you can then use in reservation calls.
Can I look up a guest's profile by ID?
Yes. GET /guests/{guest_id} returns the stored guest profile, which can be merged with reservation history from GET /reservations to populate a CRM record.
/guests/{guest_id}
Retrieve a guest profile