curl --request GET \
--url https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"elements": [
{
"id": "<string>",
"title": "<string>",
"rating": 123,
"guestRating": 123,
"isRecommended": true,
"totalPrice": {
"amount": "<string>",
"currency": "<string>"
},
"image": {
"url": "<string>",
"name": "<string>",
"alternativeText": "<string>",
"caption": "<string>",
"width": 123,
"height": 123
},
"startDate": "2023-11-07T05:31:56Z",
"nights": 123,
"address": "<string>",
"roomsConfiguration": [
{
"price": {
"amount": "<string>",
"currency": "<string>"
},
"isActive": true,
"rooms": [
{
"id": "<string>",
"name": "<string>",
"numPax": 123,
"description": "<string>",
"count": 123,
"numPaxValues": [
123
]
}
]
}
],
"source": "<string>",
"description": "<string>",
"gallery": [
{
"url": "<string>",
"name": "<string>",
"alternativeText": "<string>",
"caption": "<string>",
"width": 123,
"height": 123
}
],
"endDate": "2023-11-07T05:31:56Z",
"coordinates": {
"latitude": 123,
"longitude": 123
},
"reviewsCount": 123
}
],
"pagination": {},
"aggregate": {
"sorting": [
"<string>"
],
"filters": [
{
"id": "guestRating",
"type": "slide",
"values": [
"<string>"
]
}
]
}
},
"meta": {
"now": 123
}
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}List accommodations (internal)
List available accommodations for the itinerary on the given startDate, with optional filters and sort.
curl --request GET \
--url https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hofj.com/v1/itineraries/{itineraryId}/accommodations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"elements": [
{
"id": "<string>",
"title": "<string>",
"rating": 123,
"guestRating": 123,
"isRecommended": true,
"totalPrice": {
"amount": "<string>",
"currency": "<string>"
},
"image": {
"url": "<string>",
"name": "<string>",
"alternativeText": "<string>",
"caption": "<string>",
"width": 123,
"height": 123
},
"startDate": "2023-11-07T05:31:56Z",
"nights": 123,
"address": "<string>",
"roomsConfiguration": [
{
"price": {
"amount": "<string>",
"currency": "<string>"
},
"isActive": true,
"rooms": [
{
"id": "<string>",
"name": "<string>",
"numPax": 123,
"description": "<string>",
"count": 123,
"numPaxValues": [
123
]
}
]
}
],
"source": "<string>",
"description": "<string>",
"gallery": [
{
"url": "<string>",
"name": "<string>",
"alternativeText": "<string>",
"caption": "<string>",
"width": 123,
"height": 123
}
],
"endDate": "2023-11-07T05:31:56Z",
"coordinates": {
"latitude": 123,
"longitude": 123
},
"reviewsCount": 123
}
],
"pagination": {},
"aggregate": {
"sorting": [
"<string>"
],
"filters": [
{
"id": "guestRating",
"type": "slide",
"values": [
"<string>"
]
}
]
}
},
"meta": {
"now": 123
}
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}Authorizations
Use Authorization: Bearer <access_token> from POST /v1/oauth/token, or Authorization: Bearer <api_key>. Dev-only example key (do not use in production): see repository README.
Path Parameters
Identifier of the itinerary (cart) returned by POST /v1/itineraries.
Query Parameters
Distribution channel brand: matches channel name or domainUrl (e.g. Weebora, weebora.com, booking.hofj.com, terrarossa.com). The resolved domain is BOTH the upstream host AND the tenant routing value. If omitted, CONTENT_DEFAULT_CHANNEL_DOMAIN must be set server-side.
Locale for the brand site (it, en, es, fr). Injected as /{locale}/api/... on the upstream call. Defaults to CONTENT_DEFAULT_LOCALE.
it, en, es, fr Trip start date.
x >= 1recommended, priceAsc, priceDesc, distance Comma-separated star ratings (e.g. 3,4,5).
Comma-separated guest rating buckets (excellent,very-good,good,...).
Comma-separated price buckets (upstream-defined ranges).
Comma-separated distance buckets.
