Dates search
Dates search returns a list of bookable dates for a given search query, along with additional information about each bookable date.
Search also returns Calendar data. In here are prices fore every possible StartDate groupped by TourOperator, so that you can create comparison between different TourOperators. Prices are basically minimum offger price found for displayed StartDate.
Each bookable date has a field called HashCode
which can with conjunction of
TourOperator
be used together to execute offer checks or bookings.
Warning
Sending too generic query might result in an error due to too many matches.
We recommend limiting the number of possible matches by restricting
search to a specific product found using products
query.
API Endpoints
It's API endpoint is, /search/<content type>/dates
For example:
- For hotel:
/search/hotel/dates
- For pauschal:
/search/pauschal/dates
- For trips:
/search/trips/dates
Response structure
The response structure is made from two root keys: Products
that is an
array of found products and Dates
which is an array of actual bookable
dates. Both entries within both arrays are linked together with
an OfferID
key.
Any entries that are either not applicable to the given content type, or are missing (ie. empty) are not displayed.
typedef Products = array{
struct{
Product struct{
# For hotel and pauschal types, this is a hotel name.
# For trips this a trip name.
OfferName string
# Unique GIATA ID for this offer. Some offers might be
# missing those.
GiataID bigint
Picture struct{
# URL to object thumbnail picture (about 100x66 px)
Thumbnail string
# URL to object full-scale picture
Full string
}
# Object category (1-5)
Category int
# Rating of the offer (0-100)
OfferRating int
# Percentage of guests recommending this object (0-100)
RecommendationPercentage int
Location struct{
# Location name and its corresponding ID of this object
LocationName string
LocationID int
# Region group and region (with coressponding IDs) this
# object belongs to
RegionGroupID int
RegionGroupName string
RegionID int
RegionName string
# Object exact latitude and longitude. This information
# is missing for some objects
Latitude float
Longitude float
}
Facts map{
# Facts are short factoids about object properties.
# Key in this map is a fact short code, and it's value
# is a human-readable description of a factoid.
string => string
}
# Contains additional GIATA tags. Key is tag name, which
# usually corresponds to a specific fact in facts map.
AdditionalTags map{
string => struct{
Value string # Human readable translation of an tag
}
}
}
# Numeric ID of an offer.
OfferID int
}
}
typedef Dates = array{
struct {
# Numeric ID of an offer
OfferID int
# Offer start date
StartDate string
# Offer end date
EndDate string
# Tour operator code for this offer
TourOperator string
# Tour operator name for this offer
TourOperatorName string
# Product code for this offer as provided by Tour Operator
# Product codes are usually unique for each product
ProductCode string
# Product name for this offer as provided by Tour Operator
ProductName string
# Service code provided by a tour operator.
# Service codes tend to be different for each different
# combination of rooms, and services.
ServiceCode string
# Duration of this offer
Duration int
# Hash code for this offer.
# You use hash code with TourOperator field to create a booking
HashCode string
# Subtype for this offer
OfferSubType string
# Price for this offer
Price int
# Price type (PERSON/ROOM)
PriceType string
# Code for the service type and human-readable representation
ServiceType string
ServiceName string
# Code for room type and human-readable representation
RoomType string
RoomName string
# Code for room subtype (clasification) and human-readable representation
RoomSubtypeCode string
RoomSubtypeName string
# Code for room location (view) and human-readable representation
RoomLocationCode string
RoomLocationName string
# List of room facilites with key:value pairs
RoomFacilityList array{code:name}
# IATA Code and human-readable name for the destination airport
ArrivalAirport string
ArrivalAirportName string
# IATA Code and human-readable name for the departure airport
DepartureAirport string
DepartureAirportName string
# Free, human-readable text provided by the tour operator
# describing different details about this offer.
RoomFacilites string
RoomLocation string
RoomDetails string
IncludedServices string
# Includes trip entry point ID and name. This is applicable only
# for trips data type
EntryPoint string
EntryPointName string
# Used in trips, describes whenever the offer
# is guaranteed or not.
#
# Possible return values:
# '1' : Guaranteed
# '0' : Cancelled
# '3' : Almost guaranteed
# '4' : Finished
# '5' : Sold out
OfferStatus string
# Room occupancy information
MinOccupancy int
MaxOccupancy int
MinAdults int
MaxAdults int
MinChildren int
MaxChildren int
}
}
typedef Calendar = array{
struct {
# Tour operator code
TourOperator string
# Prices groupped by TourOperator for every possible departure (StartDate) in the search query.
Prices array{
# Offer start date
StartDate string
# Min price for this StartDate
Price int
}
}
}
Filters and sorts
This request supports the following filters for the following content types:
Filter | Description | Trips | Hotel | Pauschal |
---|---|---|---|---|
TourOperator | Filter by offer tour operators | ✔️ | ✔️ | ✔️ |
StartDate | Filter by offer start | ✔️ | ✔️ | ✔️ |
Duration | Filter by offer duration | ✔️ | ✔️ | ✔️ |
ServiceType | Filter by offer service type | x | ✔️ | ✔️ |
RoomType | Filter by offer room type | x | ✔️ | ✔️ |
DepartureAirport | Filter by offer starting airport | x | x | ✔️ |
EntryPoint | Filter by trip starting location | ✔️ | x | x |
Sorting is possible by the following fields for the following content types:
Filter | Description | Trips | Hotel | Pauschal |
---|---|---|---|---|
TourOperator | Sorts by offer tour operator name | ✔️ | ✔️ | ✔️ |
StartDate | Sorts by offer starting date | ✔️ | ✔️ | ✔️ |
Duration | Sorts by offer duration | ✔️ | ✔️ | ✔️ |
RoomType | Sorts by offer room type | x | ✔️ | ✔️ |
ServiceType | Sorts by offer service type | x | ✔️ | ✔️ |
Price | Sorts by offer price | ✔️ | ✔️ | ✔️ |
DepartureAirport | Sorts by offer starting airport | x | x | ✔️ |
ArrivalAirport | Sorts by offer destination airport | x | x | ✔️ |
Notable content differences
The following fields are only present for pauschal type:
- ArrivalAirport
- ArrivalAirportName
- DepartureAirport
- DepartureAirporttName
The following fields are not present in trips type:
- ServiceType
- ServiceName
- RoomType
- RoomName
In Product
structure for Trips type, the following fields are also
not present: Facts
, Location
, RecommendationPercentage
,
OfferRating
, Category
.
Example response
This response had a lot of content removed for brevity.
{
"RequestID": "cdbb08d0-66b3b82ae44f9295154671",
"Count": 1320,
"Pages": 132,
"Page": 0,
"Products": [
{
"Product": {
"OfferName": "Hotel Odisej",
"GiataID": 18217,
"Category": 3,
"OfferRating": 72,
"RecommendationPercentage": 82,
"Location": {
"LocationName": "Insel Mljet",
"LocationID": 2700,
"RegionGroupID": "100023",
"RegionGroupName": "Croatia",
"RegionID": 659,
"RegionName": "Dalmatia",
"Latitude": 42.788067,
"Longitude": 17.34271
},
"Facts": {
"ben": "near the beach (approx. 100-500m)",
"chf": "family-friendly",
"clb": "Club Hotel",
"spt": "a wide range of sports activities",
"wel": "rich wellness offer",
"pol": "outdoor swimming pool",
"wms": "massage",
"wsn": "steam bath (Turkish bath)",
"wbf": "beauty farms",
"sws": "water sports",
"shb": "hiking, biking",
"sfr": "fitness",
"sdv": "diving",
"chl": "children's discounts",
"sen": "seniors",
"wifi": "wifi",
"air": "air condition",
"park": "parking"
}
},
"OfferID": 0
}
],
"Dates": [
{
"OfferID": 0,
"StartDate": "2024-10-06",
"EndDate": "2024-10-11",
"TourOperator": "KOMP",
"TourOperatorName": "Kompas",
"ProductCode": "69238",
"ProductName": "Hotel Odisej",
"ServiceCode": "69238\/30",
"Duration": 5,
"HashCode": "29b397cfe740a00047b5387eb3378de9:1728172800:5",
"OfferSubType": "catalog",
"Price": 155,
"PriceType": "PERSON",
"ServiceType": "HP",
"ServiceName": "half board",
"RoomType": "DZ",
"RoomName": "double room",
"RoomSubtypeCode": "CL",
"RoomSubtypeName": "Classic",
"MinOccupancy": 2,
"MaxOccupancy": 3,
"MinAdults": 1,
"MaxAdults": 3,
"MaxChildren": 2
},
{
"OfferID": 0,
"StartDate": "2024-10-07",
"EndDate": "2024-10-12",
"TourOperator": "KOMP",
"TourOperatorName": "Kompas",
"ProductCode": "69238",
"ProductName": "Hotel Odisej",
"ServiceCode": "69238\/30",
"Duration": 5,
"HashCode": "29b397cfe740a00047b5387eb3378de9:1728259200:5",
"OfferSubType": "catalog",
"Price": 155,
"PriceType": "PERSON",
"ServiceType": "HP",
"ServiceName": "half board",
"RoomType": "DZ",
"RoomName": "double room",
"RoomSubtypeCode": "CL",
"RoomSubtypeName": "Classic",
"MinOccupancy": 2,
"MaxOccupancy": 3,
"MinAdults": 1,
"MaxAdults": 3,
"MaxChildren": 2
},
{
"OfferID": 0,
"StartDate": "2024-10-08",
"EndDate": "2024-10-13",
"TourOperator": "KOMP",
"TourOperatorName": "Kompas",
"ProductCode": "69238",
"ProductName": "Hotel Odisej",
"ServiceCode": "69238\/30",
"Duration": 5,
"HashCode": "29b397cfe740a00047b5387eb3378de9:1728345600:5",
"OfferSubType": "catalog",
"Price": 155,
"PriceType": "PERSON",
"ServiceType": "HP",
"ServiceName": "half board",
"RoomType": "DZ",
"RoomName": "double room",
"RoomSubtypeCode": "CL",
"RoomSubtypeName": "Classic",
"MinOccupancy": 2,
"MaxOccupancy": 3,
"MinAdults": 1,
"MaxAdults": 3,
"MaxChildren": 2
},
{
"OfferID": 0,
"StartDate": "2024-10-09",
"EndDate": "2024-10-14",
"TourOperator": "KOMP",
"TourOperatorName": "Kompas",
"ProductCode": "69238",
"ProductName": "Hotel Odisej",
"ServiceCode": "69238\/30",
"Duration": 5,
"HashCode": "29b397cfe740a00047b5387eb3378de9:1728432000:5",
"OfferSubType": "catalog",
"Price": 155,
"PriceType": "PERSON",
"ServiceType": "HP",
"ServiceName": "half board",
"RoomType": "DZ",
"RoomName": "double room",
"RoomSubtypeCode": "CL",
"RoomSubtypeName": "Classic",
"MinOccupancy": 2,
"MaxOccupancy": 3,
"MinAdults": 1,
"MaxAdults": 3,
"MaxChildren": 2
},
{
"OfferID": 0,
"StartDate": "2024-10-10",
"EndDate": "2024-10-15",
"TourOperator": "KOMP",
"TourOperatorName": "Kompas",
"ProductCode": "69238",
"ProductName": "Hotel Odisej",
"ServiceCode": "69238\/30",
"Duration": 5,
"HashCode": "29b397cfe740a00047b5387eb3378de9:1728518400:5",
"OfferSubType": "catalog",
"Price": 155,
"PriceType": "PERSON",
"ServiceType": "HP",
"ServiceName": "half board",
"RoomType": "DZ",
"RoomName": "double room",
"RoomSubtypeCode": "CL",
"RoomSubtypeName": "Classic",
"MinOccupancy": 2,
"MaxOccupancy": 3,
"MinAdults": 1,
"MaxAdults": 3,
"MaxChildren": 2
},
{
"OfferID": 0,
"StartDate": "2024-10-11",
"EndDate": "2024-10-16",
"TourOperator": "KOMP",
"TourOperatorName": "Kompas",
"ProductCode": "69238",
"ProductName": "Hotel Odisej",
"ServiceCode": "69238\/30",
"Duration": 5,
"HashCode": "29b397cfe740a00047b5387eb3378de9:1728604800:5",
"OfferSubType": "catalog",
"Price": 155,
"PriceType": "PERSON",
"ServiceType": "HP",
"ServiceName": "half board",
"RoomType": "DZ",
"RoomName": "double room",
"RoomSubtypeCode": "CL",
"RoomSubtypeName": "Classic",
"MinOccupancy": 2,
"MaxOccupancy": 3,
"MinAdults": 1,
"MaxAdults": 3,
"MaxChildren": 2
},
{
"OfferID": 0,
"StartDate": "2024-10-12",
"EndDate": "2024-10-17",
"TourOperator": "KOMP",
"TourOperatorName": "Kompas",
"ProductCode": "69238",
"ProductName": "Hotel Odisej",
"ServiceCode": "69238\/30",
"Duration": 5,
"HashCode": "29b397cfe740a00047b5387eb3378de9:1728691200:5",
"OfferSubType": "catalog",
"Price": 155,
"PriceType": "PERSON",
"ServiceType": "HP",
"ServiceName": "half board",
"RoomType": "DZ",
"RoomName": "double room",
"RoomSubtypeCode": "CL",
"RoomSubtypeName": "Classic",
"MinOccupancy": 2,
"MaxOccupancy": 3,
"MinAdults": 1,
"MaxAdults": 3,
"MaxChildren": 2
},
{
"OfferID": 0,
"StartDate": "2024-10-13",
"EndDate": "2024-10-18",
"TourOperator": "KOMP",
"TourOperatorName": "Kompas",
"ProductCode": "69238",
"ProductName": "Hotel Odisej",
"ServiceCode": "69238\/30",
"Duration": 5,
"HashCode": "29b397cfe740a00047b5387eb3378de9:1728777600:5",
"OfferSubType": "catalog",
"Price": 155,
"PriceType": "PERSON",
"ServiceType": "HP",
"ServiceName": "half board",
"RoomType": "DZ",
"RoomName": "double room",
"RoomSubtypeCode": "CL",
"RoomSubtypeName": "Classic",
"MinOccupancy": 2,
"MaxOccupancy": 3,
"MinAdults": 1,
"MaxAdults": 3,
"MaxChildren": 2
},
{
"OfferID": 0,
"StartDate": "2024-10-04",
"EndDate": "2024-10-09",
"TourOperator": "PALM",
"TourOperatorName": "Palma",
"ProductCode": "219387",
"ProductName": "Hotel Odisej",
"ServiceCode": "LEHRV50924",
"Duration": 5,
"HashCode": "49871ba0ac33c9e7ded4ccf3dc563ec4:1728000000:5",
"OfferSubType": "catalog",
"Price": 157,
"PriceType": "PERSON",
"ServiceType": "HP",
"ServiceName": "half board",
"RoomType": "DZ",
"RoomName": "double room",
"RoomFacilityList": {
"AC": "Air condition"
},
"RoomDetails": "classic, klima, možno dodatno ležišče",
"MinOccupancy": 2,
"MaxOccupancy": 4,
"MinAdults": 1,
"MaxAdults": 3,
"MaxChildren": 3
},
{
"OfferID": 0,
"StartDate": "2024-10-05",
"EndDate": "2024-10-10",
"TourOperator": "PALM",
"TourOperatorName": "Palma",
"ProductCode": "219387",
"ProductName": "Hotel Odisej",
"ServiceCode": "LEHRV50924",
"Duration": 5,
"HashCode": "49871ba0ac33c9e7ded4ccf3dc563ec4:1728086400:5",
"OfferSubType": "catalog",
"Price": 157,
"PriceType": "PERSON",
"ServiceType": "HP",
"ServiceName": "half board",
"RoomType": "DZ",
"RoomName": "double room",
"RoomFacilityList": {
"AC": "Air condition"
},
"RoomDetails": "classic, klima, možno dodatno ležišče",
"MinOccupancy": 2,
"MaxOccupancy": 4,
"MinAdults": 1,
"MaxAdults": 3,
"MaxChildren": 3
}
],
"Calendar": [
{
"TourOperator": "KOMP",
"Prices": [
{
"StartDate": "2024-09-08",
"Price": 290
},
{
"StartDate": "2024-09-09",
"Price": 290
},
{
"StartDate": "2024-09-10",
"Price": 290
},
{
"StartDate": "2024-09-11",
"Price": 290
},
{
"StartDate": "2024-09-12",
"Price": 290
},
{
"StartDate": "2024-09-13",
"Price": 290
},
{
"StartDate": "2024-09-14",
"Price": 290
},
{
"StartDate": "2024-09-15",
"Price": 290
},
{
"StartDate": "2024-09-16",
"Price": 290
},
{
"StartDate": "2024-09-17",
"Price": 290
},
{
"StartDate": "2024-09-18",
"Price": 290
},
{
"StartDate": "2024-09-19",
"Price": 290
},
{
"StartDate": "2024-09-20",
"Price": 290
},
{
"StartDate": "2024-09-21",
"Price": 290
},
{
"StartDate": "2024-09-22",
"Price": 290
},
{
"StartDate": "2024-09-23",
"Price": 267
},
{
"StartDate": "2024-09-24",
"Price": 244
},
{
"StartDate": "2024-09-25",
"Price": 221
},
{
"StartDate": "2024-09-26",
"Price": 198
},
{
"StartDate": "2024-09-27",
"Price": 175
},
{
"StartDate": "2024-09-28",
"Price": 175
},
{
"StartDate": "2024-09-29",
"Price": 175
},
{
"StartDate": "2024-10-06",
"Price": 155
},
{
"StartDate": "2024-10-07",
"Price": 155
},
{
"StartDate": "2024-10-08",
"Price": 155
},
{
"StartDate": "2024-10-09",
"Price": 155
},
{
"StartDate": "2024-10-10",
"Price": 155
},
{
"StartDate": "2024-10-11",
"Price": 155
},
{
"StartDate": "2024-10-12",
"Price": 155
},
{
"StartDate": "2024-10-13",
"Price": 155
}
]
},
{
"TourOperator": "PALM",
"Prices": [
{
"StartDate": "2024-09-08",
"Price": 290
},
{
"StartDate": "2024-09-09",
"Price": 290
},
{
"StartDate": "2024-09-10",
"Price": 290
},
{
"StartDate": "2024-09-11",
"Price": 290
},
{
"StartDate": "2024-09-12",
"Price": 290
},
{
"StartDate": "2024-09-13",
"Price": 290
},
{
"StartDate": "2024-09-14",
"Price": 290
},
{
"StartDate": "2024-09-15",
"Price": 290
},
{
"StartDate": "2024-09-16",
"Price": 290
},
{
"StartDate": "2024-09-17",
"Price": 290
},
{
"StartDate": "2024-09-18",
"Price": 290
},
{
"StartDate": "2024-09-19",
"Price": 290
},
{
"StartDate": "2024-09-20",
"Price": 290
},
{
"StartDate": "2024-09-21",
"Price": 290
},
{
"StartDate": "2024-09-22",
"Price": 290
},
{
"StartDate": "2024-09-23",
"Price": 267
},
{
"StartDate": "2024-09-24",
"Price": 244
},
{
"StartDate": "2024-09-25",
"Price": 221
},
{
"StartDate": "2024-09-26",
"Price": 198
},
{
"StartDate": "2024-09-27",
"Price": 175
},
{
"StartDate": "2024-09-28",
"Price": 175
},
{
"StartDate": "2024-09-29",
"Price": 175
},
{
"StartDate": "2024-10-06",
"Price": 155
},
{
"StartDate": "2024-10-07",
"Price": 155
},
{
"StartDate": "2024-10-08",
"Price": 155
},
{
"StartDate": "2024-10-09",
"Price": 155
},
{
"StartDate": "2024-10-10",
"Price": 155
},
{
"StartDate": "2024-10-11",
"Price": 155
},
{
"StartDate": "2024-10-12",
"Price": 155
},
{
"StartDate": "2024-10-13",
"Price": 155
},
{
"StartDate": "2024-08-11",
"Price": 546
},
{
"StartDate": "2024-08-12",
"Price": 546
},
{
"StartDate": "2024-09-08",
"Price": 289
},
{
"StartDate": "2024-09-09",
"Price": 289
},
{
"StartDate": "2024-09-10",
"Price": 289
},
{
"StartDate": "2024-09-11",
"Price": 289
},
{
"StartDate": "2024-09-12",
"Price": 289
},
{
"StartDate": "2024-09-13",
"Price": 289
},
{
"StartDate": "2024-09-14",
"Price": 289
},
{
"StartDate": "2024-09-15",
"Price": 289
},
{
"StartDate": "2024-09-16",
"Price": 289
},
{
"StartDate": "2024-09-17",
"Price": 289
},
{
"StartDate": "2024-09-18",
"Price": 289
},
{
"StartDate": "2024-09-19",
"Price": 289
},
{
"StartDate": "2024-09-20",
"Price": 289
},
{
"StartDate": "2024-09-21",
"Price": 289
},
{
"StartDate": "2024-09-22",
"Price": 289
},
{
"StartDate": "2024-09-23",
"Price": 266
},
{
"StartDate": "2024-09-24",
"Price": 243
},
{
"StartDate": "2024-09-25",
"Price": 220
},
{
"StartDate": "2024-09-26",
"Price": 198
},
{
"StartDate": "2024-09-27",
"Price": 175
},
{
"StartDate": "2024-09-28",
"Price": 175
},
{
"StartDate": "2024-09-29",
"Price": 175
},
{
"StartDate": "2024-09-30",
"Price": 171
},
{
"StartDate": "2024-10-01",
"Price": 168
},
{
"StartDate": "2024-10-02",
"Price": 164
},
{
"StartDate": "2024-10-03",
"Price": 160
},
{
"StartDate": "2024-10-04",
"Price": 157
},
{
"StartDate": "2024-10-05",
"Price": 157
},
{
"StartDate": "2024-10-06",
"Price": 157
},
{
"StartDate": "2024-10-07",
"Price": 157
},
{
"StartDate": "2024-10-08",
"Price": 157
},
{
"StartDate": "2024-10-09",
"Price": 157
},
{
"StartDate": "2024-10-10",
"Price": 157
},
{
"StartDate": "2024-10-11",
"Price": 157
},
{
"StartDate": "2024-10-12",
"Price": 157
},
{
"StartDate": "2024-10-13",
"Price": 157
}
]
}
],
"Filters": {
"TourOperator": {
"KOMP": {
"Value": "Kompas"
},
"PALM": {
"Value": "Palma"
}
},
"ServiceType": {
"HP": {
"Value": "half board"
}
},
"RoomType": {
"DX": {
"Value": "deluxe room"
},
"DZ": {
"Value": "double room"
}
},
"RoomSubtype": {
"-": {
"Value": "-"
},
"CL": {
"Value": "Classic"
},
"DX": {
"Value": "Deluxe"
},
"SP": {
"Value": "Superior"
}
},
"RoomLocation": {
"-": {
"Value": "-"
},
"SEA_S": {
"Value": "sea side"
},
"SEA_V": {
"Value": "sea view"
}
},
"StartDate": {
"1723334400": {
"Value": "2024-08-11"
},
"1723420800": {
"Value": "2024-08-12"
},
"1725753600": {
"Value": "2024-09-08"
},
"1725840000": {
"Value": "2024-09-09"
},
"1725926400": {
"Value": "2024-09-10"
},
"1726012800": {
"Value": "2024-09-11"
},
"1726099200": {
"Value": "2024-09-12"
},
"1726185600": {
"Value": "2024-09-13"
},
"1726272000": {
"Value": "2024-09-14"
},
"1726358400": {
"Value": "2024-09-15"
},
"1726444800": {
"Value": "2024-09-16"
},
"1726531200": {
"Value": "2024-09-17"
},
"1726617600": {
"Value": "2024-09-18"
},
"1726704000": {
"Value": "2024-09-19"
},
"1726790400": {
"Value": "2024-09-20"
},
"1726876800": {
"Value": "2024-09-21"
},
"1726963200": {
"Value": "2024-09-22"
},
"1727049600": {
"Value": "2024-09-23"
},
"1727136000": {
"Value": "2024-09-24"
},
"1727222400": {
"Value": "2024-09-25"
},
"1727308800": {
"Value": "2024-09-26"
},
"1727395200": {
"Value": "2024-09-27"
},
"1727481600": {
"Value": "2024-09-28"
},
"1727568000": {
"Value": "2024-09-29"
},
"1727654400": {
"Value": "2024-09-30"
},
"1727740800": {
"Value": "2024-10-01"
},
"1727827200": {
"Value": "2024-10-02"
},
"1727913600": {
"Value": "2024-10-03"
},
"1728000000": {
"Value": "2024-10-04"
},
"1728086400": {
"Value": "2024-10-05"
},
"1728172800": {
"Value": "2024-10-06"
},
"1728259200": {
"Value": "2024-10-07"
},
"1728345600": {
"Value": "2024-10-08"
},
"1728432000": {
"Value": "2024-10-09"
},
"1728518400": {
"Value": "2024-10-10"
},
"1728604800": {
"Value": "2024-10-11"
},
"1728691200": {
"Value": "2024-10-12"
},
"1728777600": {
"Value": "2024-10-13"
}
},
"Duration": {
"5": {
"Value": "5"
},
"6": {
"Value": "6"
},
"7": {
"Value": "7"
},
"8": {
"Value": "8"
}
}
},
"RFilters": {
"Price": {
"Minimum": 155,
"Maximum": 1048
}
},
"Sorts": {
"Price": "asc",
"StartDate": "asc"
}
}