- Startseite
- Partner
- Affiliate Programm XML-Dienst: API-Dokumentation
XML-Dienst: API-Dokumentation
Version: 1.2
About
It can be used by calling the access URL - https://api.adriatic.hr/xml-service/server. Actually, this URL is only an endpoint and you need to provide some additional information in the form of GET/POST parameters. Every call to the specified URL should be accompanied with at least two special parameters - method name and application ID - but actual number of parameters depends of method. Here is the list of all special parameters:
- method - web service (method) name (required)
- aid - application ID (AID); this is your unique ID information which will be generated for you after opting for our web services (required)
- lang - two-letter language code (according to ISO 639-1 standard) in lowercase, used to localize results (if needed, only some of data is language dependent). (not required, defaults to "en" - english)
-
sig - request signature, composed of the called method name, application ID and private key hash. (required)
- signature generation (pseudo code):
md5(<method>;<your AID>;md5(<your private key>))
- signature generation in PHP:
md5($method.';'.$aid.';'.md5($privateKey))
-
example:
https://api.adriatic.hr/xml-service/server
?method=Private_getHouse&id=1005&lang=en
&aid=af151&sig=6f0dcac4960e0eab40c4bdc1d42b6c03
- signature generation (pseudo code):
- Private accommodation - namespace Private
- Geography locations - namespace Geo
- Ordering process - namespace Order
- System/helper/common - namespace System
Examples are using testing AID, you should change it to your own before calling XML Service from your application.
Usage
The following example retrieves data of private accommodation house with ID 1005. Click on preview link to see the service result.
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=Private_getHouse
&id=1005
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
Each parameter is specified inside URL as name=value pair. The method parameter specifies service method to be invoked. All subsequent parameters are parameters passed to specified method. Some method parameters are optional while others are required to be set - faling to specifiy the required parameter will result in error.
Methods
Here is the list of supported service methods. Request parameters written in bold are required.
Many response elements contain special boolean attribute na. It stands for "not available" and means that element value is unknown (null). This attribute exist only for elements which value can be unknown.
Possible response statuses are success
and failure
.
- Private_find
- Private_findReviews
- Private_getHouse
- Private_getUnit
- Private_getAvailStatus
- Private_getUnavailDates
- Private_getHouseCancellationConditions
- Geo_find
- Geo_get
- Geo_getNames
- Order_find
- Order_create
- Order_get
- Order_confirm
- Order_cancel
- Order_setGuest
- Order_addItem
- Order_removeItem
- Order_setNotes
- System_getText
- System_getError
Private_find
Search private accommodation. Method is pagination aware (results are split across multiple pages).
Request parameters
i_from | date | Beginning of interval. Allowed format is YYYY-MM-DD. |
---|---|---|
i_to | date | End of interval. Allowed format is YYYY-MM-DD. |
i_dev | bool | Allow slight shifting of given date interval to find more accommodation units. Default value is TRUE . |
t | type | Comma delimited list of accommodation unit types. Example: "apartment,room". Supported types are:
|
id | int | Comma delimited list of house IDs. Example: "1005,1006". Use case example - if you want to get a price range of desired house(s). |
id_ref | int | Referent house ID, used for distance sort type. |
coord_lat | float | Referent latitude coordinate, used for distance sort type. |
coord_lng | float | Referent longitude coordinate, used for distance sort type. |
kit_room | bool | Use of kitchen for units of type room. |
p | int | Number of persons. |
p_dist | bool | Allow to split persons in more than one accommodation unit inside the house. Default value is FALSE . |
cat | type | House category. Supported types are:
|
prc_min | float | Minimal price in EUR (per day). Default value is 0 . |
prc_max | float | Maximal price in EUR (per day). |
prc_low | bool | Low-price accommodation. |
b_b | bool | Best buy accommodation. |
dc_t | type | Discount type. Supported types are:
|
q | string | Keywords for textual search (geography location names only). |
l | string | Geography location ID (regions, rivieras and places). |
ri_t | type | Riviera type. Supported types are:
|
land | type | Land type. Supported types are:
|
pl_t | type | Place type. Supported types are:
|
be_t | type | Beach type. Supported types are:
|
be_d | int | Maximal house to beach distance. |
isolation | bool | House is located in isolation. |
pool | bool | House with pool. |
ac | bool | Accommodation unit with air conditioner. |
stv | bool | Accommodation unit with satellite TV. |
food | bool | House with food service. |
pet | bool | House with pet approval. |
boat | bool | House with boat rent service. |
moor | bool | House with boat moor. |
outer_view_sea | bool | House with sea view. |
outer_grill | bool | House with outer grill. |
inet | bool | House with internet. |
bedrooms | int | Number of bedrooms. It can be used in combination with p_dist param. |
parking | bool | House with parking. |
ob | bool | Online booking - Book the apartment right away! Adriatic.hr guarantees the availability of facilities in this program. |
sort | type | Sort criterion. Supported types are:
standard . |
sort_dir | type | Sort direction. Supported types are:
asc . |
page | int | Page number. Default value is 1 . |
limit | int | Number of results per page (max. 25). Default value is 10 . |
Response
<list> - List data | ||
---|---|---|
items | array | Items on current page. Array of <item> elements. See <item> (List item data) for details. |
pager | set | Set of pager elements. See <pager> (List pager data) for details. |
<item> - List item data | ||
---|---|---|
house | set | Found house. See <house> (House data) for details. Element has the following attributes:
|
units | array | Accommodation units which belongs to house from the same <item> element. Only units that match search criteria are enlisted here. Array of <unit> elements. See <unit> (Accommodation unit data) for details. |
<pager> - List pager data | ||
---|---|---|
totalItems | int | Total items that match search criteria. |
totalPages | int | Total pages. |
currentPage | int | Current page. |
pageLimit | int | Maximum number of items per page. |
<house> - House data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
name | string | House name. |
capacity | int | Number of beds. |
food | bool | Food service available? |
lastIntervalCheck | datetime | Time when availability intervals are last updated. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
onlineBooking | bool | Book the apartment right away! Adriatic.hr guarantees the availability of facilities in this program. |
bestBuy | bool | Best buy guarantee (best ratio quality and price). |
units | array | References to all accommodation units which belongs to this house (not necessary match search criteria). Array of <unit> elements. See <unit> (Accommodation unit reference data) for details. |
geo | set | Geography location. See <geo> (Geography location data) for details. |
distance | set | Distances. See <distance> (Distance data) for details. |
categories | array | Categories which house belongs to. Array of <category> elements. See <category> (House category data) for details. |
discounts | array | Discounts and additional payments. Some types of discounts are related to accommodation unit (see Private_getUnit response), whilst others are related to the whole house. Discounts related to the whole house are applicable on every associated accommodation unit. Array of <discount> elements. See <discount> (Discount/additional payment data) for details. |
relate | set | Related houses. See <relate> (Related objects) for details. |
rating | set | Ratings. See <rating> (Ratings (1-5)) for details. |
redirect | array | Redirect links [URL]. Array of <redirect> elements. See <redirect> (Redirect links [URL]) for details. |
image | array | Image of house. Array of <variant> elements. See <variant> (Image variant data) for details. |
<unit> - Accommodation unit data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
name | string | Name. |
lastIntervalCheck | datetime | Time when availability intervals are last updated. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
type | type | Type. Supported types are:
|
label | string | Accommodation unit character label. Used to distinguish multiple accommodation units with a same type, within the same house. |
capacity | set | Capacity data. See <capacity> (Capacity data) for details. |
class | set | Classification data. See <class> (Accommodation unit classification data) for details. |
priceRange | array | Accommodation unit price range (discounts are applied if available). Contains two amounts (range), single amount (exact price is known) or no amounts (price is unknown). Value depends on search parameters used (date interval and number of persons). Array of <amount> elements. See <amount> (Price amount (per day).) for details. |
regularPriceRange | array | Accommodation unit price range without discounts. Contains two amounts (range), single amount (exact price is known) or no amounts (price is unknown). Value depends on search parameters used (date interval and number of persons). Array of <amount> elements. See <amount> (Price amount (per day).) for details. |
discounts | array | Discounts and additional payments. Some types of discounts are related to accommodation unit, whilst others are related to the whole house. Discounts related to the whole house are applicable on every associated accommodation unit. Array of <discount> elements. See <discount> (Discount/additional payment data) for details. |
lowPrice | bool | Accommodation unit has a low price? |
redirect | array | Redirect links [URL]. Array of <redirect> elements. See <redirect> (Redirect links [URL]) for details. |
image | array | Image of house. Array of <variant> elements. See <variant> (Image variant data) for details. |
<unit> - Accommodation unit reference data | ||
---|---|---|
self | string | Accommodation unit name. Element has the following attributes:
|
<geo> - Geography location data | ||
---|---|---|
region | string | Region name. Element has the following attributes:
|
riviera | string | Riviera name. Element has the following attributes:
|
place | string | Place name. Element has the following attributes:
|
beach | null | Beach placeholder - beaches does not have names, only IDs. Element has the following attributes:
|
<distance> - Distance data | ||
---|---|---|
beach | int | Distance from beach (meters). |
house | int | Distance from the referent house (meters) - available if sort type is "distance" and id_ref parameter is provided. |
currentLocation | int | Distance from the referent coordinates (meters) - available if coord_lat, coord_lng parameters are provided. Default sort type is "distance". If object is closer than 1000 m method returns 1000 m |
<category> - House category data | ||
---|---|---|
self | type | House category. Supported types are:
|
<discount> - Discount/additional payment data | ||
---|---|---|
type | type | Discount type. Supported types are:
|
name | string | Name. |
validity | set | Booking date time limitation in which a discount is valid. See <validity> (Discount booking time limitation) for details. |
termValidity | set | Order stay term date time limitation in which a discount is valid. See <termValidity> (Discount order stay term time limitation) for details. |
value | set | Percent, money or freeDays value. See <value> (Discount/additional payment value) for details. |
<validity> - Discount booking time limitationBooking date time limitations in which a discount is valid. | ||
---|---|---|
from | datetime | Booking date from which a discount is valid. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
to | datetime | Booking date from which a discount is invalid. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
<termValidity> - Discount order stay term time limitationOrder stay term date time limitations in which a discount is valid. | ||
---|---|---|
from | datetime | Order stay date from which a discount is valid. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
to | datetime | Order stay date from which a discount is invalid. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
<relate> - Related objects | ||
---|---|---|
exist | bool | Is object related with any other object? |
houses | array | Other houses that are related to this house. Array of <house> elements. See <house> (Related House element) for details. |
<variant> - Image variant dataImage variants are versions of the same image, differentiated by size, listed if exist. | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
url | string | Image variant URL. |
<rating> - Ratings (1-5) | ||
---|---|---|
place | int | Average place rating. Element has the following attributes:
|
beach | int | Average beach rating. Element has the following attributes:
|
accomodation | int | Average accomodation rating. Element has the following attributes:
|
host | int | Average host rating. Element has the following attributes:
|
total | int | Total average rating. Element has the following attributes:
|
<redirect> - Redirect links [URL]URL links for redirection. | ||
---|---|---|
house | string | House URL. |
unit | string | Unit URL. |
order | string | Ordering URL. |
<capacity> - Capacity data | ||
---|---|---|
total | int | Total number of beds. |
basic | int | Number of basic (main) beds. |
additional | int | Number of additional beds. |
<class> - Accommodation unit classification data | ||
---|---|---|
official | int | Official classification mark (by Croatian authority). |
<amount> - Price amount (per day). | ||
---|---|---|
self | float | Price amount. Element has the following attributes:
|
<value> - Discount/additional payment valuePercent, money or freeDays amount. Negative values are discounts, positive values are additional payments. | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
percent | float | Percent value. |
amount | float | Money amount value. Element has the following attributes:
|
freeDays | int | Number of free days. Element has the following attributes:
|
<house> - Related House element | ||
---|---|---|
name | string | House name |
capacity | int | Number of beds |
sameBuilding | bool | This house belong to the same building. |
Example usage
https://api.adriatic.hr/xml-service/server
?method=Private_find
&i_from=2025-08-09
&i_to=2025-08-15
&t=apartment
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Private_findReviews
Search guest comments for objects. Method is pagination aware (results are split across multiple pages).
Request parameters
id | int | Object ID. This parameter is required. |
---|---|---|
page | int | Page number. Default value is 1 . |
limit | int | Number of results per page (max. 25). Default value is 10 . |
Response
<list> - List data | ||
---|---|---|
items | array | Items on current page. Array of <item> elements. See <item> (List item data) for details. |
pager | set | Set of pager elements. See <pager> (List pager data) for details. |
<item> - List item data | ||
---|---|---|
unit | string | Accommodation unit name. Element has the following attributes:
|
id | int | Review id. |
author | string | Review author name. |
created | datetime | Review creation time. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
customer | bool | Adriatic.hr customer. |
review | string | Review text. Element has the following attributes:
|
rating | set | Ratings. See <rating> (Ratings (1-5)) for details. |
<pager> - List pager data | ||
---|---|---|
totalItems | int | Total items that match search criteria. |
totalPages | int | Total pages. |
currentPage | int | Current page. |
pageLimit | int | Maximum number of items per page. |
<rating> - Ratings (1-5) | ||
---|---|---|
place | int | Place rating. |
beach | int | Beach rating. |
accomodation | int | Accomodation rating. |
host | int | Host rating. |
Example usage
https://api.adriatic.hr/xml-service/server
?method=Private_findReviews
&id=1005
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Private_getHouse
Retrieve house data.
Request parameters
id | int | House ID. This parameter is required. |
---|
Response
<house> - House data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
name | string | House name. |
capacity | int | Number of beds. |
publishDate | date | House publish date. Date string in YYYY-MM-DD format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
postalCode | string | Postal code. |
lastIntervalCheck | datetime | Time when availability intervals are last updated. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
onlineBooking | bool | Book the apartment right away! Adriatic.hr guarantees the availability of facilities in this program. |
bestBuy | bool | Best buy guarantee (best ratio quality and price). |
preferredReservations | array | All prefered reservations by the lessor. Array of <period> elements. See <period> (Period of prefered reservation.) for details. |
units | array | References to all accommodation units which belongs to this house (not necessary match search criteria). Array of <unit> elements. See <unit> (Accommodation unit reference data) for details. |
lastMinute | set | Check if one or more units have last minute offer. See <lastMinute> (One or more units have last minute offer?) for details. |
geo | set | Geography location. See <geo> (Geography location data) for details. |
coordinates | set | Geography coordinates See <coordinates> (Geography coordinates) for details. |
exterior | set | House exterior. See <exterior> (Exterior data) for details. |
service | set | Availability and details of services. See <service> (Service data) for details. |
distance | set | Distances. See <distance> (Distance data) for details. |
location | set | Location data. See <location> (Location data) for details. |
communication | set | Possibilities of communication inside house. See <communication> (Communication data) for details. |
categories | array | Categories which house belongs to. Array of <category> elements. See <category> (House category data) for details. |
robinson | set | List of items related to "Robinson Crusoe style" type of tourism. See <robinson> (Robinson tourism data) for details. |
discounts | array | Discounts and additional payments. Some types of discounts are related to accommodation unit (see Private_getUnit response), whilst others are related to the whole house. Discounts related to the whole house are applicable on every associated accommodation unit. Array of <discount> elements. See <discount> (Discount/additional payment data) for details. |
lowPrice | bool | House contains at least one unit that has a low price? |
relate | set | Related houses. See <relate> (Related objects) for details. |
notes | array | Additional house characteristics. Array of <note> elements. See <note> (Additional house characteristic) for details. |
rating | set | Ratings. See <rating> (Ratings (1-5)) for details. |
redirect | array | Redirect links [URL]. Array of <redirect> elements. See <redirect> (Redirect links [URL]) for details. |
images | array | House images. Array of <image> elements. See <image> (House image) for details. |
description | set | Object description. See <description> (Object description) for details. |
guide | set | Object tourist guide. See <guide> (Object location tourist guide) for details. |
<lastMinute> - One or more units have last minute offer? | ||
---|---|---|
exist | bool | If last minute exist? |
<period> - Period of prefered reservation. | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
<unit> - Accommodation unit reference data | ||
---|---|---|
self | string | Accommodation unit name. Element has the following attributes:
|
<geo> - Geography location data | ||
---|---|---|
region | string | Region name. Element has the following attributes:
|
riviera | string | Riviera name. Element has the following attributes:
|
place | string | Place name. Element has the following attributes:
|
beach | null | Beach placeholder - beaches does not have names, only IDs. Element has the following attributes:
|
<coordinates> - Geography coordinates | ||
---|---|---|
longitude | decimal | Geographical longitude. |
latitude | decimal | Geographical latitude. |
altitude | decimal | Geographical altitude. |
<exterior> - Exterior data | ||
---|---|---|
disabledPersons | bool | Is suitable for disabled persons? |
courtyard | set | Existence and description of courtyard. See <courtyard> (Courtyard data) for details. |
infield | type | Infield description. Supported types are:
|
pool | set | Availability and terms of pool usage. See <pool> (Pool data) for details. |
parkings | array | Array of parking units. Array of <parking> elements. See <parking> (Multiple parking data.) for details. |
fixedGrill | set | Fixed grills. See <fixedGrill> (Fixed grill data) for details. |
shower | bool | Has shower in the courtyard? |
<service> - Service data | ||
---|---|---|
wifiInternet | set | WiFi internet access usage data. See <wifiInternet> (WiFi Internet access service data) for details. |
food | set | Food service data. See <food> (Food service data) for details. |
laundry | set | Laundry service outside of the accommodation unit data. See <laundry> (Laundry service outside of the accommodation unit data) for details. |
boat | set | Boat usage data. See <boat> (Boat service data. Service available on request) for details. |
moor | set | Moor usage data. See <moor> (Moor service data. Service available on request) for details. |
pet | set | Unit with pet approval. See <pet> (Pet service data) for details. |
iron | set | Iron. See <iron> (Equipment data: Iron) for details. |
ironingBoard | set | Ironing board. See <ironingBoard> (Equipment data: Ironing board) for details. |
hairDryer | set | Hair dryer. See <hairDryer> (Equipment data: Hair dryer) for details. |
portableGrill | set | Portable grill. See <portableGrill> (Portable grill data) for details. |
bicycle | set | bicycle. See <bicycle> (Equipment data: Bicycle) for details. |
beachUmbrella | set | Sun umbrellas. See <beachUmbrella> (Equipment data: Sun umbrellas) for details. |
deckChair | set | Deckchairs. See <deckChair> (Equipment data: Deckchairs) for details. |
infantBed | set | Infant bed. See <infantBed> (Infant bed data) for details. |
extraBed | set | Extra bed. See <extraBed> (Extra bed data) for details. |
extraBaby | set | One baby up to 4 years (with no extra bed) is allowed. See <extraBaby> (One baby up to 4 years (with no extra bed) is allowed data) for details. |
smoking | set | Smoking allowed. See <smoking> (Smoking data) for details. |
luxury | set | Luxury services. See <luxury> (Luxury services.) for details. |
<distance> - Distance data | ||
---|---|---|
sea | int | Distance from sea (meters). |
beach | int | Distance from beach (meters). |
shop | int | Distance from shop (meters). Element has the following attributes:
|
market | int | Distance from market (meters). Element has the following attributes:
|
restaurant | int | Distance from restaurant (meters). Element has the following attributes:
|
ambulance | int | Distance from ambulance (meters). Element has the following attributes:
|
postOffice | int | Distance from post office (meters). Element has the following attributes:
|
nightClub | int | Distance from night club (meters). Element has the following attributes:
|
diving | int | Distance from diving center (meters). Element has the following attributes:
|
pharmacy | int | Distance from pharmacy (meters). Element has the following attributes:
|
atm | int | Distance from atm (meters). Element has the following attributes:
|
exchangeOffice | int | Distance from exchange office (meters). Element has the following attributes:
|
touristInfo | int | Distance from tourist info (meters). Element has the following attributes:
|
infirmary | int | Distance from infirmary (meters). Element has the following attributes:
|
airport | int | Distance from airport (meters). Element has the following attributes:
|
ferryPort | int | Distance from ferry port (meters). Element has the following attributes:
|
busStation | int | Distance from bus station (meters). Element has the following attributes:
|
trainStation | int | Distance from train station (meters). Element has the following attributes:
|
rentaCar | int | Distance from rent-a-car (meters). Element has the following attributes:
|
gasStation | int | Distance from airport (meters). Element has the following attributes:
|
autocamp | int | Distance from autocamp (meters). Element has the following attributes:
|
nationalPark | int | Distance from entrance of the national park (meters). Element has the following attributes:
|
otherParking | int | Distance of public parking or parking that is charged extra from facility. Element has the following attributes:
|
centre | int | Distance from place center (meters). |
<location> - Location data | ||
---|---|---|
notByTheRoad | bool | Is not by the road? |
byD8Road | bool | Is near Adriatic Highway? |
byMainRoad | bool | Is near main road? |
byLocalRoad | bool | Is near local road? |
noRoadBeforeBeach | bool | Is there no road between house and beach? |
roadD8BeforeBeach | bool | Is there a Adriatic Highway between house and beach? |
mainRoadBeforeBeach | bool | Is there a main road between house and beach? |
localRoadBeforeBeach | bool | Is there a local road between house and beach? |
overpassOrUnderpassBeforeBeach | bool | Is there an overpass or underpass between house and beach? |
nearBeach | bool | Is near beach? |
stairsToBeach | int | Number of stairs between house and beach. |
reachableByCar | bool | Is object reachable by car? Element has the following attributes:
|
slope | bool | Access by slope road? Element has the following attributes:
|
macadam | bool | Access by macadam road? Element has the following attributes:
|
narrowStreet | bool | Access by narrow street? Element has the following attributes:
|
highUndercarriage | bool | Road is not suitable for cars with low undercarriage? |
accessByBoat | bool | Object accessible only by boat? |
boatTransferUnavailable | bool | Boat transfer offer is unavailable? |
boatLineNoCars | bool | Boat line transfer is available but not for cars? |
boatTransferOffer | set | Boat transfer offer by lessor. See <boatTransferOffer> (Boat transfer offer data) for details. |
noisePollution | type | Noise pollution. Supported types are:
|
isolation | bool | House is isolated? |
greenery | type | Green vegetation. Supported types are:
|
<communication> - Communication data | ||
---|---|---|
hostPresent | bool | Is host presence possible? |
otherGuests | bool | Is other guests presence possible (in accommodation units outside of our offering)? |
hostLanguages | array | Foreign languages which the host is familiar with. Array of <language> elements. See <language> (Host foreign language data) for details. |
<category> - House category data | ||
---|---|---|
self | type | House category. Supported types are:
|
<robinson> - Robinson tourism data | ||
---|---|---|
water | set | Water availability data. See <water> (Water availability data) for details. |
waterHeating | set | Water heating data. See <waterHeating> (Water heating data) for details. |
power | set | Power data. See <power> (Power data) for details. |
other | set | Other data. See <other> (Other robinson tourism related data) for details. |
<discount> - Discount/additional payment data | ||
---|---|---|
type | type | Discount type. Supported types are:
|
name | string | Name. |
validity | set | Booking date time limitation in which a discount is valid. See <validity> (Discount booking time limitation) for details. |
termValidity | set | Order stay term date time limitation in which a discount is valid. See <termValidity> (Discount order stay term time limitation) for details. |
value | set | Percent, money or freeDays value. See <value> (Discount/additional payment value) for details. |
<validity> - Discount booking time limitationBooking date time limitations in which a discount is valid. | ||
---|---|---|
from | datetime | Booking date from which a discount is valid. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
to | datetime | Booking date from which a discount is invalid. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
<termValidity> - Discount order stay term time limitationOrder stay term date time limitations in which a discount is valid. | ||
---|---|---|
from | datetime | Order stay date from which a discount is valid. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
to | datetime | Order stay date from which a discount is invalid. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
<relate> - Related objects | ||
---|---|---|
exist | bool | Is object related with any other object? |
houses | array | Other houses that are related to this house. Array of <house> elements. See <house> (Related House element) for details. |
<note> - Additional house characteristic | ||
---|---|---|
self | string | Description. |
<rating> - Ratings (1-5) | ||
---|---|---|
place | int | Average place rating. Element has the following attributes:
|
beach | int | Average beach rating. Element has the following attributes:
|
accomodation | int | Average accomodation rating. Element has the following attributes:
|
host | int | Average host rating. Element has the following attributes:
|
total | int | Total average rating. Element has the following attributes:
|
<redirect> - Redirect links [URL]URL links for redirection. | ||
---|---|---|
house | string | House URL. |
unit | string | Unit URL. |
order | string | Ordering URL. |
<image> - House image | ||
---|---|---|
self | array | Image variants. Array of <variant> elements. See <variant> (Image variant data) for details. Element has the following attributes:
|
<courtyard> - Courtyard data | ||
---|---|---|
exist | bool | Courtyard exists? |
size | int | Courtyard size (in square meters). |
share | bool | Is shared with other objects? |
playground | bool | Has children playground? |
seats | bool | Has seating place? |
<pool> - Pool data | ||
---|---|---|
exist | bool | Common or private pool exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
length | float | Pool length in meters. |
width | float | Pool width in meters, |
depth | float | Pool depth in meters. |
waterType | string | Pool water type. |
heating | bool | Pool has heating? |
private | set | Private pool data. See <private> (Private pool data.) for details. |
<private> - Private pool data. | ||
---|---|---|
exist | bool | Private pool exists in units? |
units | array | References to all accommodation units which belong to this house (not necessarily matching search criteria) and have access to private pool. Array of <unit> elements. See <unit> (Accommodation unit reference data) for details. |
<parking> - Multiple parking data. | ||
---|---|---|
isGarage | bool | Is designated parking actually a garage? |
stackParking | bool | Cars are parked one behind the other? |
reservedPlaces | int | Number of reserved parking places. |
distance | int | Distance in meters. |
stairsToParking | int | Number of stairs from house to parking. |
price | set | Pricing data. See <price> (Pricing data) for details. |
positionYard | bool | Is parking in the yard? |
<fixedGrill> - Fixed grill data | ||
---|---|---|
shared | set | Shared fixed grill. See <shared> (Shared fixed grill data.) for details. |
private | set | Private fixed grills. See <private> (Private fixed grills data.) for details. |
<shared> - Shared fixed grill data. | ||
---|---|---|
exist | bool | Shared fixed grill exists? |
<private> - Private fixed grills data. | ||
---|---|---|
exist | bool | Private fixed grill exists? |
units | array | References to all accommodation units which belongs to this house (not necessary match search criteria) and have access to private fixed grill. Array of <unit> elements. See <unit> (Accommodation unit reference data) for details. |
<wifiInternet> - WiFi Internet access service data | ||
---|---|---|
exist | bool | WiFi Internet access service exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<food> - Food service data | ||
---|---|---|
breakfast | set | Breakfast service data. See <breakfast> (Breakfast service data) for details. |
halfboard | set | Half-board service data. See <halfboard> (Half-board service data) for details. |
fullboard | set | Full-board service data. See <fullboard> (Full-board service data) for details. |
freeAgeLt4 | bool | Is food service free for children with age under 4 years? |
halfAge4To12 | bool | Is food service on 50% discount for children with age of 4 to 12 years? |
<laundry> - Laundry service outside of the accommodation unit data | ||
---|---|---|
exist | bool | Laundry service exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<boat> - Boat service data. Service available on request | ||
---|---|---|
exist | bool | Boat service exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<moor> - Moor service data. Service available on request | ||
---|---|---|
exist | bool | Moor service exists? |
type | type | Moor type. Supported types are:
|
distance | int | Distance from object in meters. |
price | set | Pricing data. See <price> (Pricing data) for details. |
<pet> - Pet service data | ||
---|---|---|
exist | bool | Pet service exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
units | array | References to all accommodation units which belong to this house where pets are allowed. Array of <unit> elements. See <unit> (Accommodation unit reference data) for details. |
<iron> - Equipment data: Iron | ||
---|---|---|
exist | bool | Device available? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<ironingBoard> - Equipment data: Ironing board | ||
---|---|---|
exist | bool | Device available? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<hairDryer> - Equipment data: Hair dryer | ||
---|---|---|
exist | bool | Device available? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<portableGrill> - Portable grill data | ||
---|---|---|
exist | bool | Device available? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<bicycle> - Equipment data: Bicycle | ||
---|---|---|
exist | bool | Device available? |
price | set | Pricing data. See <price> (Pricing data) for details. |
quantity | int | Quantity in numbers. |
<beachUmbrella> - Equipment data: Sun umbrellas | ||
---|---|---|
exist | bool | Device available? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<deckChair> - Equipment data: Deckchairs | ||
---|---|---|
exist | bool | Device available? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<infantBed> - Infant bed data | ||
---|---|---|
exist | bool | Infant bed available? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<extraBed> - Extra bed data | ||
---|---|---|
exist | bool | Extra bed available? |
price | set | Pricing data. See <price> (Pricing data) for details. |
quantity | int | Quantity in numbers. |
units | array | References to all accommodation units which belongs to this house (not necessary match search criteria) where extra bed is available. Array of <unit> elements. See <unit> (Accommodation unit reference data) for details. |
<extraBaby> - One baby up to 4 years (with no extra bed) is allowed data | ||
---|---|---|
exist | bool | Extra baby available? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<smoking> - Smoking data | ||
---|---|---|
exist | bool | Smoking allowed? |
price | set | Pricing data. See <price> (Pricing data) for details. |
units | array | References to all accommodation units which belongs to this house (not necessary match search criteria) where smoking is allowed. Array of <unit> elements. See <unit> (Accommodation unit reference data) for details. |
<luxury> - Luxury services. | ||
---|---|---|
jacuzzi | bool | Is jacuzzi available? |
sauna | bool | Is sauna available? |
wellness | bool | Is wellness available? |
massage | bool | Is massage available? |
fitness | bool | Is fitness available? |
wineCellar | bool | Is wine cellar available? |
minibar | bool | Is minibar available? |
additionalCleaning | bool | Is additional cleaning available? |
attendants | bool | Is additional staff available? |
<water> - Water availability data | ||
---|---|---|
waterTank | bool | Has water tank filled by rainwater or by a cistern. |
waterPlumbing | bool | Has regular water supply. |
waterNonDrinkable | bool | Water is not drinkable? |
<waterHeating> - Water heating data | ||
---|---|---|
onlyColdWater | bool | Only cold water is available. |
oil | bool | Is water heated by an oil generator. |
solar | bool | Is water heated by solar collectors. |
gasBoiler | bool | Is water heated by a gas boiler. |
sun | bool | Water is heated by direct sunlight. |
showerSun | bool | Water for the outside showers is heated by direct sunlight. |
<power> - Power data | ||
---|---|---|
noPower | bool | The house has no power supply. |
solar12 | bool | 12V solar energy power supply. |
solar220 | bool | 220V solar energy power supply. |
oil12 | bool | 12V power supply through oil generator. |
oil220 | bool | 220V power supply through oil generator. |
electricGrid | bool | Power supply from electric grid. |
<other> - Other robinson tourism related data | ||
---|---|---|
mobileMarket | bool | Mobile market is available. |
gasRefrigerator | bool | Gas refrigerator. |
gasStove | bool | Gas stove. |
outsideToilet | bool | Has an outside toilet. Element has the following attributes:
|
<variant> - Image variant dataImage variants are versions of the same image, differentiated by size, listed if exist. | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
url | string | Image variant URL. |
<boatTransferOffer> - Boat transfer offer data | ||
---|---|---|
exist | bool | Boat transfer offer available? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<price> - Pricing data | ||
---|---|---|
type | type | Price type. Supported types are:
|
amount | float | Price amount. Element has the following attributes:
|
unit | type | Price unit type. Supported types are:
|
<value> - Discount/additional payment valuePercent, money or freeDays amount. Negative values are discounts, positive values are additional payments. | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
percent | float | Percent value. |
amount | float | Money amount value. Element has the following attributes:
|
freeDays | int | Number of free days. Element has the following attributes:
|
<language> - Host foreign language data | ||
---|---|---|
code | string | Two-letter language code (according to ISO 639-1 standard) in lowercase. |
knowledge | int | Knowledge mark. Range is from 1 (poor) to 5 (excellent). |
<breakfast> - Breakfast service data | ||
---|---|---|
exist | bool | Breakfast service exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<halfboard> - Half-board service data | ||
---|---|---|
exist | bool | Half-board service exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<fullboard> - Full-board service data | ||
---|---|---|
exist | bool | Full-board service exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<house> - Related House element | ||
---|---|---|
name | string | House name |
capacity | int | Number of beds |
sameBuilding | bool | This house belong to the same building. |
<description> - Object description | ||
---|---|---|
summary | string | Object description summary |
body | string | Object description body |
<guide> - Object location tourist guide | ||
---|---|---|
items | array | Tourist guide information of the place, riviera and region where the object is located. Array of <item> elements. See <item> (Geo location data) for details. |
<item> - Geo location data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
name | string | Geo location name. |
description | string | Description of the geo location. |
image | array | Geo location image. References to all geo location image variants which belong to this tourist guide item. Array of <variant> elements. See <variant> (Image variant data) for details. |
Example usage
https://api.adriatic.hr/xml-service/server
?method=Private_getHouse
&id=1005
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Private_getUnit
Retrieve accommodation unit data.
Request parameters
id | int | Accommodation unit ID. This parameter is required. |
---|---|---|
prc_wod | bool | Prices without discounts (applies only to an accommodation service price list). Use this if you want to show original price list (without discount, if any exist) and print (advert) discount information elsewhere, instead of just including discounts into price list. Default value is FALSE . |
Response
<unit> - Accommodation unit data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
name | string | Name (eg. A-1000-c, K-1000, etc.). Name is consisted of type code (K, A, AS or K), house name and character label (not used for house type). This description is for your information only (you don't have to deal with it). |
lastIntervalCheck | datetime | Time when availability intervals are last updated. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
type | type | Type. Supported types are:
|
label | string | Character label. Used to distinguish multiple accommodation units with a same type, within the same house. |
house | string | Name of the house which accommodation unit belongs to. Element has the following attributes:
|
capacity | set | Capacity data. See <capacity> (Capacity data) for details. |
class | set | Classification data. See <class> (Accommodation unit classification data) for details. |
position | set | Position inside house data. See <position> (Position data) for details. |
entrance | set | Entrance data. See <entrance> (Entrance data) for details. |
totalArea | int | Total area (surface) of the accommodation unit in square meters. |
hasSeaView | bool | Does the unit have a view of the sea? |
disabledPersons | bool | Is suitable for disabled persons? |
parts | array | Available parts. Part is an inner or outer area of accommodation unit (eg. room, terrace, balcony, etc.). Array of <part> elements. See <part> (Part data) for details. |
service | set | Availability and details of services. See <service> (Service data) for details. |
priceList | set | Price list data. Accommodation unit daily price depends of date and number of persons. Thus, prices are groupped by date intervals and number of persons. See <priceList> (Price list data) for details. |
redirect | array | Redirect links [URL]. Array of <redirect> elements. See <redirect> (Redirect links [URL]) for details. |
rating | set | Ratings. See <rating> (Ratings (1-5)) for details. |
notes | array | Additional accommodation unit characteristics. Array of <note> elements. See <note> (Additional accommodation unit characteristic) for details. |
images | array | Images. Array of <image> elements. See <image> (Image) for details. |
description | set | Accommodation unit description. See <description> (Accommodation unit description) for details. |
<capacity> - Capacity data | ||
---|---|---|
total | int | Total number of beds. |
basic | int | Number of basic (main) beds. |
additional | int | Number of additional beds. |
<class> - Accommodation unit classification data | ||
---|---|---|
official | int | Official classification mark (by Croatian authority). |
<position> - Position data | ||
---|---|---|
floor | int | Floor. Value of zero represent ground floor, negative values represent basement floors. |
floorSpan | int | Number of floors through which this accommodation unit spans. |
raisedFloor | bool | Is the unit floor raised? Special examples: if floor is 0 (ground floor) and the floor is raised, it's upper ground floor; if floor is -1 (basement) and the floor is raised, it's half basement. |
mezzanine | bool | Is this a mezzanine floor? |
attic | bool | Is this unit in the attic? |
flat | bool | Is this unit flat in building? |
detachedUnit | bool | Is this detached unit? |
<entrance> - Entrance data | ||
---|---|---|
share | set | Entrance sharing data. See <share> (Resource sharing data) for details. |
shared | bool | Does the unit have a shared entrance (with the host or other units)? |
doorSeparated | bool | Is the unit separated by door from other units in the object. |
entranceType | type | Type of unit entrance. Supported types are:
|
entranceFromUnit | text | Contains accommodation unit name if the entrance to the unit is from the stated unit. Element has the following attributes:
|
somePartsNotConnected | bool | Some parts of this accommodation unit are not connected with the rest of the unit. |
<part> - Part data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
type | type | Type. Supported types are:
|
size | int | Size (in square meters). This element is deprecated. See <area> . |
area | int | Area (surface) in square meters. Can have "na" attribute. |
house | bool | Belongs to the entire house? |
airConditioning | bool | Has an opening to the air-conditioning unit. |
beds | array | Available beds. Array of <bed> elements. See <bed> (Bed data) for details. |
standard | bool | Has standard equipment? Used for kitchens only. Standard equipment includes: refrigerator, stove (without oven), sink and dishes |
smallKitchen | bool | Kitchen is small (kitchenette)? Used for kitchens only. Standard equipment includes: small refrigerator and sink |
fridge | bool | Has fridge? Used for kitchens only. |
iceChest | bool | Has ice-chest? Used for kitchens only. |
fridgeIceChest | bool | Has combine fridge/ice-chest? Used for kitchens only. |
dishWasher | bool | Has dish-washer? Used for kitchens only. |
oven | bool | Has oven? Used for kitchens only. |
stove | bool | Has stove? Used for kitchens only. |
hotPlate | bool | Has hot plate (table cooker)? Used for kitchens only. |
microwave | bool | Has microwave? Used for kitchens only. Element has the following attributes:
|
price | set | Pricing data. Used for kitchens only. See <price> (Pricing data) for details. |
bathTub | bool | Has bathtub? Used for bathrooms only. |
showerBath | bool | Has shower-bath? Used for bathrooms only. |
shade | set | Sun shade data. Used for outer parts (terraces and balconies) only. See <shade> (Sun shade data) for details. |
seaView | bool | Has sea view? Used for outer parts (terraces and balconies) only. This element is deprecated. See <<unit><hasSeaView>> . |
relate | set | Related data. See <relate> (Related data) for details. |
share | set | Sharing data. See <share> (Resource sharing data) for details. |
passage | set | Information about who has to cross this part. See <passage> (Part passage data) for details. |
separation | set | Information about whether this part is separated from its accommodation unit. Also contains
information on entrance into the room. See <separation> (Part separation data) for details. |
windowWalled | bool | Information about whether the windows shown in the room are walled up. |
windowShuttersOnly | bool | Do the windows shown in the room have shutters but no window panes? |
windowWallView | bool | Information about whether the windows shown in the room face the nearby wall. |
<service> - Service data | ||
---|---|---|
terrTv | bool | Is terrestrial TV program available? |
satTv | bool | Is satellite TV program available? |
pc | bool | Is personal comuter available? |
safe | bool | Is safe deposit box available? |
fixedGrill | bool | Is private fixed grill available? |
fridge | bool | Is fridge available? This is used only when accommodation unit type is defined as a room. |
ac | set | Air conditioner usage data. See <ac> (Air conditioner data) for details. |
heating | set | Heating usage data. See <heating> (Heating data) for details. |
kitchen | set | Kitchen usage data. Kitchen service can exist only if accommodation unit type is room. See <kitchen> (Kitchen data) for details. |
finalCleaning | set | Final cleaning data. See <finalCleaning> (Final cleaning service data) for details. |
deposit | set | Deposit data. See <deposit> (Deposit data) for details. |
childBed | set | Additional accommodation for children in bed for children. See <childBed> (Additional accommodation for children in bed for children data) for details. |
pet | bool | Pet accommodation data. |
extraBedOnRequest | bool | Extra bed on request. |
smoking | bool | Is smoking allowed in the unit? |
laundryMachine | bool | Does unit have a laundry machine? |
<priceList> - Price list data | ||
---|---|---|
intervals | array | Prices by intervals. Array of <interval> elements. See <interval> (Interval data) for details. |
year | int | Price list year. |
nextYearIntervals | array | Prices by intervals for the next year. Array of <interval> elements. See <interval> (Interval data) for details. |
lowPrice | bool | Accommodation unit has a low price? |
touristTaxIncluded | bool | Accommodation unit has tourist tax included in price? |
shortOrderExtraCharge | bool | Accommodation unit has short stay charged extra? |
lastMinute | set | Last minute. See <lastMinute> (Last minute offer) for details. |
<redirect> - Redirect links [URL]URL links for redirection. | ||
---|---|---|
house | string | House URL. |
unit | string | Unit URL. |
order | string | Ordering URL. |
<note> - Additional accommodation unit characteristic | ||
---|---|---|
self | string | Description. |
<rating> - Ratings (1-5) | ||
---|---|---|
place | int | Average place rating. Element has the following attributes:
|
beach | int | Average beach rating. Element has the following attributes:
|
accomodation | int | Average accomodation rating. Element has the following attributes:
|
host | int | Average host rating. Element has the following attributes:
|
total | int | Total average rating. Element has the following attributes:
|
<image> - Image | ||
---|---|---|
self | array | Image variants. Array of <variant> elements. See <variant> (Image variant data) for details. Element has the following attributes:
|
<description> - Accommodation unit description | ||
---|---|---|
summary | string | Accommodation unit description summary. |
<bed> - Bed data | ||
---|---|---|
capacity | int | Person capacity. |
type | type | Type. Supported types are:
|
children | bool | Is it intended for children only? |
small | bool | Dimensions of the bed aren't standard size (80x190 or 160x190)? |
<shade> - Sun shade data | ||
---|---|---|
exist | bool | Sun shade exists? |
types | array | All available sun shade types. Array of <type> elements. See <type> (Sun shade data.) for details. |
<type> - Sun shade data. | ||
---|---|---|
self | type | Sun shade type. Supported types are:
|
<relate> - Related data | ||
---|---|---|
exist | bool | Is part related with any other part? |
parts | array | Parts in our accommodation units (in our offering) which relate with this part. Array of <part> elements. See <part> (Related part data) for details. |
host | bool | Is part related with part used by the host? |
otherUnits | set | Other accommodation units (outside of our offering) which relate with this part. See <otherUnits> (Other accommodation units data) for details. |
<share> - Resource sharing data | ||
---|---|---|
exist | bool | Is resource shared with anyone? |
host | bool | Is resource shared with the host? |
agencyUnits | array | Our accommodation units (in our offering) which share the resource. Array of <unit> elements. See <unit> (Accommodation unit reference data) for details. |
otherUnits | set | Other accommodation units (outside of our offering) which share the resource. See <otherUnits> (Other accommodation units data) for details. |
<passage> - Part passage data | ||
---|---|---|
exist | bool | Does anyone have to cross this room? |
host | bool | Does the host have to cross this room? |
guestsAgency | bool | Do guests from other accommodation units in our offer have to cross this room? |
guestsAgencyUnits | array | List of accommodation units in our offer whose guests have to cross this room. Array of <unit> elements. See <unit> (Accommodation unit data) for details. |
guestsOtherUnits | set | Other accommodation units (outside of our offering) whose guests have to cross the room. See <otherUnits> (Other accommodation units data) for details. |
entranceIntoUnit | bool | Is entrance into the accommodation unit through this room. Available only for 'bedroom' room type. |
passageToParts | array | List of rooms accessed through this room. Only available for 'bedroom' room types. Array of <part> elements. See <part> (Passage to part data) for details. |
<separation> - Part separation data | ||
---|---|---|
detachedFromUnit | bool | Is the part detached from its accommodation unit? Not available for parts that belong to an object. |
entranceFrom | type | Specifies from where the part is entered from. Supported types are:
|
entranceFromPart | set | If part is accessed from another part in our offer, then the data for that part is listed here. See <entranceFromPart> (Entrance from part data) for details. |
<capacity> - Capacity for child bed. | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
price | set | Pricing data. See <price> (Pricing data) for details. |
<ac> - Air conditioner data | ||
---|---|---|
exist | bool | Air conditioner exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<heating> - Heating data | ||
---|---|---|
exist | bool | Heating exists? |
type | type | Type of heating. Sole supported type is:
|
price | set | Pricing data. See <price> (Pricing data) for details. |
<kitchen> - Kitchen dataThis is used only if accommodation unit type is room. | ||
---|---|---|
exist | bool | Kitchen exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<finalCleaning> - Final cleaning service data | ||
---|---|---|
exist | bool | Final cleaning service exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<deposit> - Deposit data | ||
---|---|---|
exist | bool | Deposit exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<childBed> - Additional accommodation for children in bed for children data | ||
---|---|---|
exist | bool | Additional child bed exists? |
price | set | Pricing data. See <price> (Pricing data) for details. |
<interval> - Interval data | ||
---|---|---|
from | date | Begin of interval (format is YYYY-MM-DD). Date string in YYYY-MM-DD format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
to | date | End of interval (format is YYYY-MM-DD). Date string in YYYY-MM-DD format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
prices | array | Prices by number of persons. First price is for maximum number of persons. Array of <price> elements. See <price> (Interval price data) for details. |
<lastMinute> - Last minute offer | ||
---|---|---|
exist | bool | Last minute exists. |
intervals | array | Intervals of last minute offer. Array of <interval> elements. See <interval> (Last minute interval) for details. |
<interval> - Last minute interval | ||
---|---|---|
from | date | Begin of interval (format is YYYY-MM-DD). Date string in YYYY-MM-DD format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
to | date | End of interval (format is YYYY-MM-DD). Date string in YYYY-MM-DD format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
oldAmountMin | float | Price before beginning of last minute offer for minimum number of persons. Charge per person/per day. Element has the following attributes:
|
oldAmountMax | float | Price before beginning of last minute offer for maximum number of persons. Charge per person/per day. Element has the following attributes:
|
newAmountMin | float | Price after beginning of last minute offer for minimum number of persons. Charge per person/per day. Element has the following attributes:
|
newAmountMax | float | Price after beginning of last minute offer for maximum number of persons. Charge per person/per day. Element has the following attributes:
|
discount | string | Percentage by which the old amount reduced. Element has the following attributes:
|
<discount> - Discount/additional payment data | ||
---|---|---|
type | type | Discount type. Supported types are:
|
name | string | Name. |
value | set | Percent, money or freeDays value. See <value> (Discount/additional payment value) for details. |
<value> - Discount/additional payment valuePercent, money or freeDays amount. Negative values are discounts, positive values are additional payments. | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
percent | float | Percent value. |
amount | float | Money amount value. Element has the following attributes:
|
freeDays | int | Number of free days. Element has the following attributes:
|
<variant> - Image variant dataImage variants are versions of the same image, differentiated by size, listed if exist. | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
url | string | Image variant URL. |
<price> - Pricing data | ||
---|---|---|
type | type | Price type. Supported types are:
|
amount | float | Price amount. Element has the following attributes:
|
unit | type | Price unit type. Supported types are:
|
<unit> - Accommodation unit reference data | ||
---|---|---|
self | string | Accommodation unit name. Element has the following attributes:
|
<otherUnits> - Other accommodation units data | ||
---|---|---|
exist | bool | Other accommodation units exists? |
count | int | Count of other accommodation units. |
<part> - Related part data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
object | int | ID of the house that the room belongs to. Used for shared rooms. Set to 0 if room belongs to an accommodation unit. |
thisUnit | bool | Part is used by this accommodation unit. |
share | set | Sharing data. See <share> (Resource sharing data) for details. |
<part> - Passage to part data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
object | int | ID of the house that the room belongs to. Used for shared rooms. Set to 0 if room belongs to an accommodation unit. |
thisUnit | bool | Part is used by this accommodation unit. |
share | set | Sharing data. See <share> (Resource sharing data) for details. |
<entranceFromPart> - Entrance from part data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
object | int | ID of the house that the room belongs to. Used for shared rooms. Set to 0 if room belongs to an accommodation unit. |
thisUnit | bool | Part is used by this accommodation unit. |
share | set | Sharing data. See <share> (Resource sharing data) for details. |
<price> - Interval price data | ||
---|---|---|
amount | float | Price amount (per day). Element has the following attributes:
|
persons | int | Number of persons. |
Example usage
https://api.adriatic.hr/xml-service/server
?method=Private_getUnit
&id=1868
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Private_getAvailStatus
Get accommodation unit(s)'s availability status.
Request parameters
id | list | Comma delimited list of accommodation unit IDs. Example: "1868,1869". This parameter is required. |
---|---|---|
i_from | date | Begin of interval. Allowed format is YYYY-MM-DD. This parameter is required. |
i_to | date | End of interval. Allowed format is YYYY-MM-DD. This parameter is required. |
Response
<status> - Availability data | ||
---|---|---|
avail | bool | All specified accommodation units are available? Element has the following attributes:
|
units | array | Availability by accommodation unit. Array of <unit> elements. See <unit> (Accommodation unit availability) for details. |
<unit> - Accommodation unit availability | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
avail | bool | Accommodation unit is available? Element has the following attributes:
|
Example usage
https://api.adriatic.hr/xml-service/server
?method=Private_getAvailStatus
&id=1868%2C1869
&i_from=2025-08-09
&i_to=2025-08-15
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Private_getUnavailDates
Get accommodation unit unavailable dates.
Request parameters
id | int | Accommodation unit ID. This parameter is required. |
---|
Response
<dates> - Unavailable dates data | ||
---|---|---|
self | array | Unavailable dates (if any). Array of <date> elements. See <date> (Unavailable date data) for details. |
<date> - Unavailable date data | ||
---|---|---|
self | date | Date string in YYYY-MM-DD format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). Element has the following attributes:
|
Example usage
https://api.adriatic.hr/xml-service/server
?method=Private_getUnavailDates
&id=2459
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Private_getHouseCancellationConditions
Get accommodation conditions for cancellation.
Request parameters
id | int | House ID. This parameter is required. |
---|
Response
<cancellationPolicy> - Cancellation conditions | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
policyType | type | Accommodation reservations can be canceled free of charge for some time if "policyType" is "flexible". Supported types are:
|
policyDays | int | Minimal number of days prior to reservation start date for which free of charge condition is eligible if "policyType" is "flexible". |
Example usage
https://api.adriatic.hr/xml-service/server
?method=Private_getHouseCancellationConditions
&id=1005
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Geo_find
Search geography locations (except beaches). Method is pagination aware (results are split across multiple pages).
Request parameters
id | int | Comma delimited list of region, riviera and place IDs. Example: "re-2,ri-17,pl-106". |
---|---|---|
q | string | Search string (case insensitive). |
q_match | type | String matching mode. Hint: begin and begin_word modes can be used for implementation of location input field with autocomplete support. Supported types are:
substring . |
t | type | Location type. Supported types are:
|
sort | type | Sort criterion. Supported types are:
name . |
sort_dir | type | Sort direction. Supported types are:
asc . |
page | int | Page number. Default value is 1 . |
limit | int | Number of results per page (max. 25). Default value is 10 . |
Response
<list> - List data | ||
---|---|---|
items | array | Items on current page. Array of <item> elements. See <item> (List item data) for details. |
pager | set | Set of pager elements. See <pager> (List pager data) for details. |
<item> - List item data | ||
---|---|---|
id | string | Location ID. |
name | string | Location name. |
type | type | Location type. Supported types are:
|
riviera | string | Riviera name. Available only if location type is place . Element has the following attributes:
|
region | string | Region name. Available only if location type is place or riviera . Element has the following attributes:
|
image | array | Image of location. Array of <variant> elements. See <variant> (Image variant data) for details. |
coordinates | set | Geography coordinates. Available only if location type is place . See <coordinates> (Geography coordinates) for details. |
<pager> - List pager data | ||
---|---|---|
totalItems | int | Total items that match search criteria. |
totalPages | int | Total pages. |
currentPage | int | Current page. |
pageLimit | int | Maximum number of items per page. |
<variant> - Image variant dataImage variants are versions of the same image, differentiated by size, listed if exist. | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
url | string | Image variant URL. |
<region> - Region data | ||
---|---|---|
name | string | Region name. |
rivieras | array | References to all rivieras which belong to this region. Array of <riviera_ref> elements. See <riviera_ref> for details. |
images | array | Region images. Array of <image> elements. See <image> for details. |
<coordinates> - Geography coordinates | ||
---|---|---|
longitude | decimal | Geographical longitude. |
latitude | decimal | Geographical latitude. |
altitude | decimal | Geographical altitude. |
Example usage
https://api.adriatic.hr/xml-service/server
?method=Geo_find
&q=hvar
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Geo_get
Retrieve geography location data. Supported location types are place, beach, riviera and region.
Request parameters
id | string | Geography location data. This parameter is required. |
---|
Response
<location> - Location data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
type | type | Location type. Supported types are:
|
region | set | Region name. Available only if location type is region . See <region> (Region data) for details. Element has the following attributes:
|
riviera | set | Riviera name. Available only if location type is riviera . See <riviera> (Riviera data) for details. Element has the following attributes:
|
place | set | Place name. Available only if location type is place . See <place> (Place data) for details. Element has the following attributes:
|
beach | set | Beach name. Available only if location type is beach . See <beach> (Beach data) for details. Element has the following attributes:
|
<region> - Region data | ||
---|---|---|
name | string | Region name. |
rivieras | array | References to all rivieras which belong to this region. Array of <riviera> elements. See <riviera> (Riviera reference) for details. |
images | array | Region images. Array of <image> elements. See <image> (Image) for details. |
<riviera> - Riviera data | ||
---|---|---|
name | string | Riviera name. |
region | string | Region name. Element has the following attributes:
|
type | type | Riviera type. Supported types are:
|
places | array | References to all places which belong to this riviera. Array of <place> elements. See <place> (Place reference) for details. |
images | array | Riviera images. Array of <image> elements. See <image> (Image) for details. |
<place> - Place data | ||
---|---|---|
name | string | Place name. |
riviera | string | Riviera name. Element has the following attributes:
|
region | string | Region name. Element has the following attributes:
|
nationalPark | string | National park name. Element has the following attributes:
|
type | type | Place type. Supported types are:
|
largerPlace | set | Larger place data. See <largerPlace> (Larger place data) for details. |
islet | set | Islet data. See <islet> (Islet data) for details. |
beachesGeneral | set | General info on beaches which belong to this place. See <beachesGeneral> (Place beaches data) for details. |
beaches | array | References to all beaches which belong to this place. Array of <beach> elements. See <beach> (Beach reference) for details. |
images | array | Place images. Array of <image> elements. See <image> (Image) for details. |
coordinates | set | Geography coordinates. See <coordinates> (Geography coordinates) for details. |
<beach> - Beach data | ||
---|---|---|
name | string | Beach name. |
place | string | Place name. Element has the following attributes:
|
riviera | string | Riviera name. Element has the following attributes:
|
region | string | Region name. Element has the following attributes:
|
outsideAPlace | bool | Is beach outside a place? |
coordinates | set | Geography coordinates. See <coordinates> (Geography coordinates) for details. |
type | type | Main beach type. Supported types are:
|
types | array | All available beach types. Array of <type> elements. See <type> (Beach type) for details. |
access | type | Sea access type. Supported types are:
|
private | bool | Beach is 'private' (isolated)? |
naturalShade | bool | Beach has a natural shade? |
shower | bool | Beach has a shower? |
entertainment | bool | Beach has an entertainment content? |
nudeOfficial | bool | Beach is official nudist beach? |
nudeSuitable | bool | Beach is suitable for nudism? |
extra | array | All available extra beach content. Array of <extra> elements. See <extra> (Extra beach content) for details. |
other | set | Data of other beaches in the same place. See <other> (Other beaches data) for details. |
images | array | Beach images. Array of <image> elements. See <image> (Image) for details. |
<region> - Region reference | ||
---|---|---|
self | string | Region name. Element has the following attributes:
|
<riviera> - Riviera reference | ||
---|---|---|
self | string | Riviera name. Element has the following attributes:
|
<place> - Place reference | ||
---|---|---|
self | string | Place name. Element has the following attributes:
|
<beach> - Beach reference | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
<largerPlace> - Larger place data | ||
---|---|---|
exist | bool | Larger place exists? |
name | string | Larger place name (only if the larger place exists). |
id | string | Larger place ID (only if the larger place exists). |
boatTransport | bool | Boat transport is necessary to get to the larger place (only if the larger place exists)? |
<islet> - Islet data | ||
---|---|---|
exist | bool | Place is on an islet? |
name | string | Islet name (only if the islet exists). |
transportCar | bool | Car can be transported onto the islet (only if the islet exists)? |
<beachesGeneral> - Place beaches data | ||
---|---|---|
nudeOfficial | bool | Place has an official nudism beach? |
nudeSuitable | bool | Place has a beach suitable for nudism? |
entertainment | bool | Place has a beach with an entertainment content? |
naturalShade | bool | Place has a beach with a natural shade? |
shower | bool | Place has a beach with a shower? |
private | bool | Place has a beach that is 'private' (isolated)? |
extra | array | All available extra beach content. Array of <extra> elements. See <extra> (Extra beach content) for details. |
types | array | All available beach types. Array of <type> elements. See <type> (Beach type) for details. |
access | type | Place has a beach with this access type. Supported types are:
|
<other> - Other beaches data | ||
---|---|---|
types | array | All available beach types. Array of <type> elements. See <type> (Beach type) for details. |
access | type | Sea access type. Supported types are:
|
nudeOfficial | bool | Official nudism beach? |
nudeSuitable | bool | Suitable for nudism? |
entertainment | bool | Entertainment content? |
naturalShade | bool | Natural shade? |
shower | bool | Has shower? |
private | bool | 'Private' (isolated)? |
extra | array | All available extra beach content. Array of <extra> elements. See <extra> (Extra beach content) for details. |
images | array | Images of other beaches. Array of <image> elements. See <image> (Image) for details. |
<extra> - Extra beach content | ||
---|---|---|
cateringFacility | bool | Catering facility? |
waterPark | bool | Water park? |
jetSki | bool | Jet ski? |
pedalBoat | bool | Pedal boat? |
sportFacilities | bool | Sport facilities? |
playground | bool | Playground? |
beachumbrellaDeckchair | bool | Beachumbrella or/and deckchair? |
lifeguard | bool | Is guarded by lifeguard? |
parkingNear | bool | Is parking near? |
adaptedForDisabled | bool | Is adapted for disabled? |
suitableForDisabled | bool | Is suitable for disabled? |
<image> - Image | ||
---|---|---|
self | array | Image variants. Array of <variant> elements. See <variant> (Image variant data) for details. Element has the following attributes:
|
<variant> - Image variant dataImage variants are versions of the same image, differentiated by size, listed if exist. | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
url | string | Image variant URL. |
<coordinates> - Geography coordinates | ||
---|---|---|
longitude | decimal | Geographical longitude. |
latitude | decimal | Geographical latitude. |
altitude | decimal | Geographical altitude. |
<type> - Beach type | ||
---|---|---|
self | type | Beach type. Supported types are:
|
Example usage
https://api.adriatic.hr/xml-service/server
?method=Geo_get
&id=pl-220
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=Geo_get
&id=be-223
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=Geo_get
&id=ri-17
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=Geo_get
&id=re-1
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Geo_getNames
Retrieve geography location names. Supported location types are place, riviera and region. Method can be used for implementation of location input field with autocomplete support.
Request parameters
Response
<names> - Location names | ||
---|---|---|
self | array | Names of all available locations (except beaches). Array of <name> elements. See <name> (Location name) for details. |
<name> - Location name | ||
---|---|---|
self | string | Element has the following attributes:
|
Example usage
https://api.adriatic.hr/xml-service/server
?method=Geo_getNames
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Order_find
Search created orders (except temporary). Method is pagination aware (results are split across multiple pages).
Request parameters
q | string | Search string (case insensitive). |
---|---|---|
c_from | date | Begin of creation interval. Allowed format is YYYY-MM-DD. |
c_to | date | End of creation interval. Allowed format is YYYY-MM-DD. |
m_from | date | Begin of modification interval. Allowed format is YYYY-MM-DD. |
m_to | date | End of modification interval. Allowed format is YYYY-MM-DD. |
checkout_from | date | Begin of check out interval. Allowed format is YYYY-MM-DD. |
checkout_to | date | End of check out interval. Allowed format is YYYY-MM-DD. |
s | type | Status. Supported types are:
|
sort | type | Sort criterion. Supported types are:
created . |
sort_dir | type | Sort direction. Supported types are:
asc . |
page | int | Page number. Default value is 1 . |
limit | int | Number of results per page (max. 25). Default value is 10 . |
Response
<list> - List data | ||
---|---|---|
items | array | Items on current page. Array of <item> elements. See <item> (List item data) for details. |
pager | set | Set of pager elements. See <pager> (List pager data) for details. |
<item> - List item data | ||
---|---|---|
order | set | Order data. See Order_get - <order> (Order data) for details. |
<pager> - List pager data | ||
---|---|---|
totalItems | int | Total items that match search criteria. |
totalPages | int | Total pages. |
currentPage | int | Current page. |
pageLimit | int | Maximum number of items per page. |
Example usage
https://api.adriatic.hr/xml-service/server
?method=Order_find
&q=john+smith
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Order_create
Create new temporary order. It should be confirmed during the ordering process. New order is empty and should be populated with order items and guest data before confirmation (closing).
Request parameters
Response
{$method["response"]}
.Example usage
https://api.adriatic.hr/xml-service/server
?method=Order_create
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Order_get
Retrieve order data.
Request parameters
id | int | Order ID. This parameter is required. |
---|
Response
<order> - Order data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
items | array | Order items. Array of <item> elements. See Order_addItem - <item> (Order item data) for details. |
calc | set | Costs calculation. See <calc> (Costs calculation data) for details. |
cancellationCalc | array | Cancellation calculation data. Array of <cancellationCalc> elements. See <cancellationCalc> (Cancellation calculation data) for details. |
inheritedOrder | int | The order ID that replaces this one. |
user | array | User data. Array of <user> elements. See <user> (User data) for details. |
notes | string | User notes. Special text field which allows user to enter custom notes during (preferably at the last step) the ordering process is highly recommended for better user experience. |
status | type | Order's current status. Supported types are:
|
makingPaymentData | set | Data for making credit card payment. See <makingPaymentData> (Data for making payment) for details. |
<calc> - Costs calculation data | ||
---|---|---|
items | array | Costs calculation item. Array of <item> elements. See <item> (Costs calculation item data) for details. |
payments | array | Payments ordered by term. Array of <payment> elements. See <payment> (Payment data) for details. |
totalPrice | array | Total price amounts. Multiple amount elements in case of multiple currencies. Array of <amount> elements. See <amount> (Total price amount data) for details. |
commission | float | Partner (your) commission amount. Element has the following attributes:
|
<item> - Costs calculation item data | ||
---|---|---|
name | string | Item's name. |
unit | type | Item's unit. Empty in some cases (e.g. if the item is a discount). Supported types are:
|
unitPrice | float | Unit price. Element has the following attributes:
|
quantity | int | Quantity. |
price | float | Item's price. Element has the following attributes:
|
group | int | Index of item's group. This is not intended for display, only as a helper if the similar items should be groupped together in the final (displayed to user) costs calculation table. |
<payment> - Payment data | ||
---|---|---|
term | datetime | Term of payment. Date-time string in YYYY-MM-DD hh:mm:ss format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
amount | float | Value. Element has the following attributes:
|
<amount> - Total price amount data | ||
---|---|---|
self | float | Value. Element has the following attributes:
|
<cancellationCalc> - Cancellation calculation data | ||
---|---|---|
name | string | Description. |
amount | float | Total price amount data. Element has the following attributes:
|
commission | float | Partner (your) commission amount. Element has the following attributes:
|
<inheritedOrder> - The order that replaces this one data | ||
---|---|---|
id | int | Order id of the order that replaces this one. |
<user> - User data | ||
---|---|---|
firstName | string | First name. |
lastName | string | Last name. |
country | string | Country name. Element has the following attributes:
|
string | E-mail address. | |
phones | array | Phone numbers. Array of <phone> elements. See <phone> (Phone data) for details. |
<phone> - Phone data | ||
---|---|---|
self | string | Phone number. |
<makingPaymentData> - Data for making payment | ||
---|---|---|
amount | float | Value. Element has the following attributes:
|
requestCode | string | Our custom parameter which describes the payment. Needs to be forwarded to payment provider. |
orderDescription | string | Description of service consumer is paying for. Must not contain any special characters or line breaks |
confirmUrl | string | Url for server-to-server communication. Payment provider sends return values containing the result of the payment process to this link. |
paymentUrl | string | Link for credit card payment. |
Example usage
https://api.adriatic.hr/xml-service/server
?method=Order_get
&id=1234
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Order_confirm
Confirm existing order. Should be called at the end of the ordering process.
Request parameters
id | int | Order ID. This parameter is required. |
---|
Response
Example usage
https://api.adriatic.hr/xml-service/server
?method=Order_confirm
&id=1234
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Order_cancel
Cancel existing temporary order. Should be called if the order is not accepted (guest changes his mind during the ordering process).
Request parameters
id | int | Order ID. This parameter is required. |
---|
Response
Example usage
https://api.adriatic.hr/xml-service/server
?method=Order_cancel
&id=1234
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Order_setGuest
Set guest data. Guest data are required to be set before order confirmation.
Request parameters
id | int | Order ID. This parameter is required. |
---|---|---|
fn | string | First name. This parameter is required. |
ln | string | Last name. This parameter is required. |
c | string | Two-letter country code (according to ISO 3166-1 alpha-2 standard) in lowercase. This parameter is required. |
e | string | E-mail address. Required only if phone number is not given. |
p | string | Phone number. Required only if e-mail address is not given. |
Response
Example usage
https://api.adriatic.hr/xml-service/server
?method=Order_setGuest
&id=1234
&fn=John
&ln=Smith
&c=fr
&e=john%40smith.xx
&p=%2B123+45+678-900
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Order_addItem
Add new order item.
Request parameters
order_id | int | Order ID. This parameter is required. |
---|---|---|
t | type | Item type. Sole supported type is:
|
u | list | Comma delimited list of accommodation unit IDs. One or more accommodation units of the same house are supported only. Example: "1868,1869". This parameter is required. |
i_from | date | Begin of interval. Allowed format is YYYY-MM-DD. This parameter is required. |
i_to | date | End of interval. Allowed format is YYYY-MM-DD. This parameter is required. |
p | int | Number of persons. This parameter is required. |
p_age | list | Comma delimited list of number of persons per age range. Four age ranges exist and number of persons must be given for all of them (even if it is zero), in the following order: above 18, 12 to 18, 4 to 12 and under 4. Example: "4,0,2,0". This parameter is required. |
p_unit | list | Comma delimited list of number of persons per accommodation unit. List is 2-dimensional - list item is a semicolon delimited pair of accommodation unit ID and number of persons. This parameter in required only if more then one accommodation unit is chosen. Example: "1868;7,1869;6". |
pet | int | Number of pets. This parameter is required. |
pet_desc | string | Pets description. Special text field which allows user to enter pets description is highly recommended for more efficient ordering process. |
food | type | Food service type. Supported types are:
|
Response
<item> - Order item data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
units | array | Accommodation units. Array of <unit> elements. See <unit> (Accommodation unit data) for details. |
person | set | Number of persons data. See <person> (Number of persons data) for details. |
interval | set | Date interval data. See <interval> (Date interval data) for details. |
petCount | int | Number of pets. |
petDesc | string | Pets description. |
food | type | Food type. Supported types are:
|
<unit> - Accommodation unit data | ||
---|---|---|
self | string | Accommodation unit name. Element has the following attributes:
|
<person> - Number of persons data | ||
---|---|---|
count | int | Total number of persons. |
ages | array | Number of persons per age range. Array of <age> elements. See <age> (Number of person per age range data.) for details. |
units | array | Number of persons per accommodation unit. Array of <unit> elements. See <unit> (Number of person per accommodation unit data.) for details. |
<interval> - Date interval data | ||
---|---|---|
from | date | Begin of interval. Date string in YYYY-MM-DD format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
to | date | End of interval. Date string in YYYY-MM-DD format (ISO 8601). Time zone is Croatian - GMT+1 (+DST). |
<age> - Number of person per age range data. | ||
---|---|---|
self | int | Number of persons. Element has the following attributes:
|
<unit> - Number of person per accommodation unit data. | ||
---|---|---|
self | int | Number of persons. Element has the following attributes:
|
Example usage
https://api.adriatic.hr/xml-service/server
?method=Order_addItem
&order_id=1234
&t=private_units
&u=1868%2C1869
&i_from=2025-07-21
&i_to=2025-07-28
&p=13
&p_age=7%2C2%2C3%2C1
&p_unit=1868%3B7%2C1869%3B6
&pet=0
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Order_removeItem
Remove existing order item.
Request parameters
id | int | Order item ID. This parameter is required. |
---|---|---|
order_id | int | Order ID. This parameter is required. |
Response
Example usage
https://api.adriatic.hr/xml-service/server
?method=Order_removeItem
&id=1
&order_id=1234
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
Order_setNotes
Set user's custom notes.
Request parameters
id | int | Order ID. This parameter is required. |
---|---|---|
notes | string | User's notes. This parameter is required. |
Response
Example usage
https://api.adriatic.hr/xml-service/server
?method=Order_setNotes
&id=1234
¬es=Hello+world
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
System_getText
Retrieve method text.
Request parameters
m | type | Method name. Supported types are:
|
---|
Response
<text> - Text data | ||
---|---|---|
self | n/a | Element has no value. Element has the following attributes:
|
params | array | Method parameters with associated text. Array of <param> elements. See <param> (Method parameter data) for details. |
nodes | array | Method response XML nodes with associated text. Array of <node> elements. See <node> (Method response XML node data) for details. |
types | array | Types with associated text. Array of <type> elements. See <type> (Type data) for details. |
<param> - Method parameter data | ||
---|---|---|
self | string | Parameter text. Element has the following attributes:
|
<node> - Method response XML node data | ||
---|---|---|
self | string | Node text. Element has the following attributes:
|
<type> - Type data | ||
---|---|---|
params | array | Method parameters which use this type. Array of <param> elements. See <param> (Method parameter name) for details. |
nodes | array | Method response XML nodes which use this type. Array of <node> elements. See <node> (Method response XML node path) for details. |
options | array | Type options. Array of <option> elements. See <option> (Type option data) for details. |
<param> - Method parameter name | ||
---|---|---|
self | string | Parameter name. |
<node> - Method response XML node path | ||
---|---|---|
self | string | XPath path. |
<option> - Type option data | ||
---|---|---|
self | string | Option text. Element has the following attributes:
|
Example usage
https://api.adriatic.hr/xml-service/server
?method=System_getText
&m=Geo_find
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=System_getText
&m=Geo_get
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=System_getText
&m=Private_find
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=System_getText
&m=Private_findReviews
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=System_getText
&m=Private_getHouse
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=System_getText
&m=Private_getUnit
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=System_getText
&m=Private_getAvailStatus
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=System_getText
&m=Private_getUnavailDates
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=System_getText
&m=Order_get
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=System_getText
&m=Order_addItem
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=System_getText
&m=Order_setNotes
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
System_getError
Retrieve error text translation.
Request parameters
code | int | Error code. This parameter is required. |
---|
Response
<error> - Error data | ||
---|---|---|
message | text | Translated error message. Element has the following attributes:
|
Example usage
https://api.adriatic.hr/xml-service/server
?method=System_getError
&code=200
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW
https://api.adriatic.hr/xml-service/server
?method=System_getError
&code=217
&lang=en
&aid=YOUR_AID
&sig=SIGNATURE_GENERATED_BY_YOU
PREVIEW