Skip to main content
POST
/
api
/
google
/
hotels
/
search
/google/hotels/search
curl --request POST \
  --url https://api.anysite.io/api/google/hotels/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "location": "<string>",
  "check_in": "<string>",
  "check_out": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "feature_id": "<string>",
    "name": "<string>",
    "@type": "@google_hotel",
    "token": "<string>",
    "property_type": "<string>",
    "hotel_class": 123,
    "latitude": 123,
    "longitude": 123,
    "address": "<string>",
    "phone": "<string>",
    "neighborhood": "<string>",
    "rating": 123,
    "review_count": 123,
    "review_summary": "<string>",
    "review_aspects": [],
    "description": "<string>",
    "image": "<string>",
    "images": [],
    "price_from": 123,
    "currency": "<string>",
    "place_id": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
location
string
required

City or area to search hotels in

Minimum string length: 1
Examples:

"New York"

"Chicago"

"Miami"

check_in
string
required

Check-in date in YYYY-MM-DD format

Example:

"2026-07-15"

check_out
string
required

Check-out date in YYYY-MM-DD format

Example:

"2026-07-17"

count
integer
required

Max number of results

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

feature_id
string
required
name
string
required
@type
string
default:@google_hotel
token
string | null
property_type
string | null
hotel_class
integer | null
latitude
number | null
longitude
number | null
address
string | null
phone
string | null
neighborhood
string | null
rating
number | null
review_count
integer | null
review_summary
string | null
review_aspects
GoogleHotelReviewAspect · object[]
description
string | null
image
string | null
images
string[]
price_from
number | null
currency
string | null
place_id
string | null