Skip to main content
GET
/
v1
/
hotel_details
/
{hotel_id}
Fetch rich metadata (gallery, facilities, policies, per-room details) for a single hotel
curl --request GET \
  --url https://api.example.com/v1/hotel_details/{hotel_id} \
  --header 'X-API-Key: <api-key>'
import requests

url = "https://api.example.com/v1/hotel_details/{hotel_id}"

headers = {"X-API-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};

fetch('https://api.example.com/v1/hotel_details/{hotel_id}', 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.example.com/v1/hotel_details/{hotel_id}",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "X-API-Key: <api-key>"
  ],
]);

$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.example.com/v1/hotel_details/{hotel_id}"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("X-API-Key", "<api-key>")

	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.example.com/v1/hotel_details/{hotel_id}")
  .header("X-API-Key", "<api-key>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/v1/hotel_details/{hotel_id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "hotel": {
    "id": "htl_8f21a9c0",
    "name": "Hôtel Le Marais",
    "description": "A boutique 4-star hotel in the heart of the Marais district.",
    "star_rating": 4,
    "address": "12 Rue de Rivoli",
    "city": "Paris",
    "country_code": "FR",
    "coordinates": {
      "latitude": 48.8566,
      "longitude": 2.3522
    },
    "images": [
      "https://images.gojinko.com/hotels/htl_8f21a9c0/1.jpg"
    ],
    "facilities": [
      "Free WiFi",
      "Air conditioning",
      "24-hour front desk"
    ],
    "policies": [
      null
    ],
    "checkin_time": "15:00",
    "checkout_time": "11:00"
  },
  "rooms": [
    null
  ]
}
{
  "error": {
    "code": "BAD_REQUEST",
    "message": "Malformed JSON in request body.",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
{
  "error": {
    "code": "AUTH_REQUIRED",
    "message": "Invalid or expired API key.",
    "doc_url": "https://docs.gojinko.com/api-reference/authentication"
  }
}
{
  "error": {
    "code": "BAD_REQUEST",
    "message": "origins: origins is required; trip_type: trip_type is required",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
{
  "error": {
    "code": "RATE_LIMITED",
    "message": "Rate limit or quota exceeded.",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
{
  "error": {
    "code": "UPSTREAM_ERROR",
    "message": "Upstream travel provider returned an error. Please retry.",
    "doc_url": "https://docs.gojinko.com/concepts/errors"
  }
}
Pull the full marketing and operational profile of a single property after a search result catches the user’s attention. Useful for questions like “what amenities does this hotel have”, “is there a pool on site”, or “what is the cancellation policy on the deluxe room”. Returns the gallery, facilities, room metadata, and policies in one payload.

Authorizations

X-API-Key
string
header
required

Path Parameters

hotel_id
string
required

Query Parameters

checkin
string
checkout
string

Response

Hotel detail

hotel
object
rooms
null[]