Skip to main content

Popular Hotel Destinations Endpoint

Fetches popular hotel destinations for discovery and search entry points.

  • Endpoint: /api/v1/tourmind/hotels/popular-destinations
  • Method: GET

Headers

HeaderValueRequiredDescription
Partner-Access-TokenBase64 StringYesYour encrypted AES-256 time-sensitive token.
Acceptapplication/jsonYes

Sample Response

{
"result": 1,
"message": "success",
"data": {
"thailand": [
{
"city": "Phuket",
"country": "Thailand",
"country_code": "TH",
"image_url": null
}
],
"international": [
{
"city": "Singapore",
"country": "Singapore",
"country_code": "SG",
"image_url": "https://onlynx-asset.s3.ap-southeast-1.amazonaws.com/tourmind/popular-destinations/example.jpg"
}
]
}
}

Response Fields

FieldTypeDescription
data.thailandArrayPopular destinations in Thailand.
data.internationalArrayPopular international destinations.
cityStringDestination city name.
country_codeStringISO 3166-1 alpha-2 country code.
image_urlString or nullDestination image URL.