Skip to main content
POST
/
api
/
skyscanner
/
stays
/
search
/skyscanner/stays/search
curl --request POST \
  --url https://api.anysite.io/api/skyscanner/stays/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "entity_id": "<string>",
  "checkin_date": "2023-12-25",
  "checkout_date": "2023-12-25",
  "count": 2,
  "timeout": 300,
  "adults": 2,
  "children_ages": [],
  "rooms": 1
}
'
[
  {
    "id": "<string>",
    "@type": "@skyscanner_stay",
    "name": "<string>",
    "stars": 123,
    "review_score": 123,
    "review_count": 123,
    "review_label": "<string>",
    "rating_provider": "<string>",
    "image": "<string>",
    "images": [],
    "price": 123,
    "price_total": 123,
    "price_with_taxes": 123,
    "price_without_discount": 123,
    "discount_percentage": 123,
    "currency": "<string>",
    "distance": "<string>",
    "address": "<string>",
    "postcode": "<string>",
    "location_text": "<string>",
    "latitude": 123,
    "longitude": 123,
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
entity_id
string
required

Destination place entity id

Pattern: ^\d+$
Example:

"27544008"

checkin_date
string<date>
required

Check-in date

Example:

"2026-08-15"

checkout_date
string<date>
required

Check-out date

Example:

"2026-08-16"

count
integer
required

Max number of hotels to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
adults
integer
default:2

Number of adult guests

Required range: 1 <= x <= 16
children_ages
integer[]

Ages of child guests (0-17)

rooms
integer
default:1

Number of rooms

Required range: 1 <= x <= 8

Response

Successful Response

id
string
required
@type
string
default:@skyscanner_stay
name
string | null
stars
integer | null
review_score
number | null
review_count
integer | null
review_label
string | null
rating_provider
string | null
image
string | null
images
string[]
price
number | null
price_total
number | null
price_with_taxes
number | null
price_without_discount
number | null
discount_percentage
integer | null
currency
string | null
distance
string | null
address
string | null
postcode
string | null
location_text
string | null
latitude
number | null
longitude
number | null
url
string | null