万邦客路获取客路搜索原数据 API 返回值说明

item_search_app-获取客路搜索原数据 [查看演示] API测试工具 注册开通

klook.item_search_app

公共参数

请求地址: https://api-gw.onebound.cn/klook/item_search_app

名称 类型 必须 描述
keyString调用key(必须以GET方式拼接在URL中)
secretString调用密钥
api_nameStringAPI接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
cacheString[yes,no]默认yes,将调用缓存的数据,速度比较快
result_typeString[json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
langString[cn,en,ru]翻译语言,默认cn简体中文
versionStringAPI版本
请求参数

请求参数:area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19

参数说明:area_id:区域ID(item_area接口的city_id字段)
page:页码
checkin:入住时间
checkout:退订时间

响应参数

Version: Date:2025-02-07

名称 类型 必须 示例值 描述
item
Mix 0 [] 获得酒店列表数据
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19";
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_ENCODING, "gzip");
var_dump(curl_exec($curl));
?>
<?php
//定义缓存目录和引入文件
define("DIR_RUNTIME","runtime/");
define("DIR_ERROR","runtime/");
define("SECACHE_SIZE","0");
//SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.onebound.cn/";
$obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
$obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
$obapi->api_key = "<您自己的apiKey>";
$obapi->api_secret = "<您自己的apiSecret>";
$obapi->api_version ="";
$obapi->secache_path ="runtime/";
$obapi->secache_time ="86400";
$obapi->cache = true;

$api_data = $obapi->exec(
                array(
	                "api_type" =>"klook",
	                "api_name" =>"item_search_app",
	                "api_params"=>array (
  'area_id' => '57',
  'page' => '1',
  'checkin' => '2025-02-18',
  'checkout' => '2025-02-19',
)
                )
            );
 var_dump($api_data);
?>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.PrintWriter;
import java.net.URLConnection;

public class Example {
	private static String readAll(Reader rd) throws IOException {
		StringBuilder sb = new StringBuilder();
		int cp;
		while ((cp = rd.read()) != -1) {
			sb.append((char) cp);
		}
		return  sb.toString();
	}
	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		conn.setDoOutput(true);
		conn.setDoInput(true);
		PrintWriter out = new PrintWriter(conn.getOutputStream());
		out.print(body);
		out.flush();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static void main(String[] args) throws IOException, JSONException {
		// 请求示例 url 默认请求参数已经URL编码处理
		String url = "https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19";
		JSONObject json = getRequestFromUrl(url);
		System.out.println(json.toString());
	}

}
//using System.Net.Security;
//using System.Security.Cryptography.X509Certificates;
private const String method = "GET";
static void Main(string[] args)
{
	String bodys = "";
	// 请求示例 url 默认请求参数已经做URL编码
	String url = "https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19";
	HttpWebRequest httpRequest = null;
	HttpWebResponse httpResponse = null; 
	if (url.Contains("https://"))
	{
		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
	}
	else
	{
		httpRequest = (HttpWebRequest)WebRequest.Create(url);
	}
	httpRequest.Method = method;
	if (0 < bodys.Length)
	{
		byte[] data = Encoding.UTF8.GetBytes(bodys);
		using (Stream stream = httpRequest.GetRequestStream())
		{
		stream.Write(data, 0, data.Length);
		}
	}
	try
	{
		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
	}
	catch (WebException ex)
	{
		httpResponse = (HttpWebResponse)ex.Response;
	}
	Console.WriteLine(httpResponse.StatusCode);
	Console.WriteLine(httpResponse.Method);
	Console.WriteLine(httpResponse.Headers);
	Stream st = httpResponse.GetResponseStream();
	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
	Console.WriteLine(reader.ReadToEnd());
	Console.WriteLine("\n");
}
public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
	return true;
}
# coding:utf-8
"""
Compatible for python2.x and python3.x
requirement: pip install requests
"""
from __future__ import print_function
import requests
# 请求示例 url 默认请求参数已经做URL编码
url = "https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19"
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)
url := fmt.Sprintf("https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19", params)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
    panic(err)
}
req.Header.Set("Authorization", apiKey)

client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
    panic(err)
}
defer resp.Body.Close()

body, err := ioutil.ReadAll(resp.Body)
if err != nil {
    panic(err)
}

fmt.Println(string(body))
fetch('https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"area_id":"57","page":"1","checkin":"2025-02-18","checkout":"2025-02-19"})// request parameters here
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
<script src="js/obapi.js"></script>
<script type="text/javascript">
obAPI.config({
    debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
    api_url: "https://api-gw.onebound.cn", // 
    api_key: "<您自己的apiKey>", // 必填,
    api_secret: "<您自己的apiSecret>", //
    lang: "cn", // 
    timestamp: "", // 必填,生成签名的时间戳
    nonceStr: "", // 必填,生成签名的随机串
    signature: "",// 必填,签名
    jsApiList: [] // 必填,需要使用的JS接口列表
});
</script>
<div id="api_data_box"></div>
<script type="text/javascript">
obAPI.exec(
     {
     "api_type":"klook",
     "api_name" : "item_search_app",
     "api_params": {"area_id":"57","page":"1","checkin":"2025-02-18","checkout":"2025-02-19"}//area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body 
import Foundation
 
let url = URL(string: "https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19")!
let task = URLSession.shared.dataTask(with: url) { data, response, error in
    guard let data = data else {
        print("Error: No data was returned")
        return
    }
     
    if let data = String(data: data, encoding: .utf8) {
        print(data)
    }
}
task.resume()
NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19"];

NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];

[request setHTTPMethod:@"GET"];
NSError *error;
NSURLResponse *response;

NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"%@",result);
#include<stdio.h>
#include <stdlib.h>
#include<string.h>
#include<curl/curl.h>

int main(){
  CURL *curl;  
  CURLcode res;   
  struct curl_slist *headers=NULL; 

  char url[] = "https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19";
  curl_global_init(CURL_GLOBAL_ALL); 
  curl = curl_easy_init(); 

  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL,url);
    headers = curl_slist_append(headers, "Content-Type: application/json"); 

    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
    res = curl_easy_perform(curl);

    if(res != CURLE_OK){
      printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
    }
    curl_easy_cleanup(curl);          
  }
  curl_global_cleanup();
  return 0;
}
#include<iostream>
#include<string>
#include<curl/curl.h>

using namespace std;

static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
{
    std::size_t realSize = size *nmemb;
    auto *realPtr = reinterpret_cast<char *>(ptr);

    for (std::size_t i=0;i<realSize;++i) {
        *(stream) += *(realPtr + i);
    }

    return realSize;
}

int main(){

     CURL *curl;
     CURLcode result;
     string readBuffer;
     curl = curl_easy_init();

     if(curl) {

         curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19");
         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
         curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);

         result = curl_easy_perform(curl);

         if(result == CURLE_OK) {
             cout<<readBuffer<<endl;
         }else{
             cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
         }

         curl_easy_cleanup(curl);
     }
     return 0;
}
const https = require("https");

https.get("https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19", (resp) => {
  let data = "";

  resp.on("data", (chunk) => {
    data += chunk;
  });

  resp.on("end", () => {
    console.log(data);
  });
}).on("error", (err) => {
  console.log("Error: " + err.message);
});
import java.net.HttpURLConnection
import java.net.URL

fun main() {
    val url = URL("https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19")
    val con = url.openConnection() as HttpURLConnection
    con.requestMethod = "GET"

    val responseCode = con.responseCode
    if (responseCode == HttpURLConnection.HTTP_OK) { // success
        val inputLine = con.inputStream.bufferedReader().use { it.readText() }
        println(inputLine)
    } else {
        println("GET request failed")
    }
}
use std::io::{self, Read};
use reqwest;

fn main() -> io::Result<()> {

    let mut resp = reqwest::get("https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19")
content(r)
url = "https://api-gw.onebound.cn/klook/item_search_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&area_id=57&page=1&checkin=2025-02-18&checkout=2025-02-19";
response = webread(url);
disp(response);
响应示例
{
      "item": {
        "center_city_info": null,
        "content": [
          {
            "data": {
              "left_icon": null,
              "result_count": "285",
              "right_text": "搜索到 {result_count} 间酒店"
            },
            "type": "header"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "15K+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "15K+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/249548-sunworld-hotel-beijing-wangfujing/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=539.3&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjI0OTU0OCwibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6NTM5LjMsInByaWNlVHlwZSI6IkZVTExfQ0FDSEUiLCJyYXRlSWQiOiIyMDM5MzQ5NDUiLCJzb3VyY2UiOjEsInN1cHBsaWVyQWNjb3VudElkIjoiMTA0Iiwic3VwcGxpZXJJZCI6MX0%3D",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "健身中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "商务中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "位于市中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "健身中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "商务中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "位于市中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.0",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 249548,
                "image_list": [
                  "https://res.klook.com/klook-hotel/image/upload/agodahotel/200/2004/2004_16120815310049540041.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/200/2004/2004_16120816190049543109.jpg",
                  "https://q-xx.bstatic.com/xdata/images/hotel/840x460/79553635.jpg?k=beb5d083b40a869f66cd052b98eb6174a3e88e4e2fcc9f2f21fc734baf2b9f01&o=",
                  "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/200/2004/2004_16120815320049540049.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/200/2004/2004_16120816140049542938.jpg"
                ],
                "klook_product_id": 1100249548,
                "latitude": "39.91724205381266",
                "local_name": "Sunworld Hotel Beijing Wangfujing",
                "location": {
                  "desc": "距离市中心 1.5km,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.40700292004246",
                "max_score": "5",
                "name": "北京王府井天伦松鹤大饭店",
                "review_num_desc": "1K+条评价",
                "score_desc": "很好",
                "star": 4,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "539.3",
                "has_stock": true,
                "original_price_desc": "¥ 555.4",
                "price": "539.3",
                "price_tag_list": [
                  {
                    "id": "savePrice",
                    "tag_text": "¥ 16.1",
                    "text": "可省",
                    "type": "vertical_promo_tag"
                  }
                ],
                "price_tags": [
                  {
                    "bg_color": "#FFF0E5",
                    "bg_color_left": null,
                    "bg_color_right": null,
                    "bold": null,
                    "border_color": null,
                    "desc": null,
                    "discount_desc": null,
                    "hover_list": null,
                    "icon": null,
                    "id": null,
                    "max_line": null,
                    "name": "可省 ¥ 16.1",
                    "prefix": null,
                    "text_color": "#FF5B00",
                    "time_left": null,
                    "type": 1
                  }
                ],
                "reward_desc": "赚Klook积分回馈(约¥1.5)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [
                {
                  "icon_src": null,
                  "id": "-1",
                  "tag_color": "#F44622",
                  "text": "限时促销",
                  "type": "manual_tag"
                }
              ],
              "promotion_tags": [
                {
                  "bg_color": null,
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": "#FFF0E5",
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": "-1",
                  "max_line": null,
                  "name": "限时促销",
                  "prefix": null,
                  "text_color": "#FF5B00",
                  "time_left": null,
                  "type": 1
                }
              ],
              "rate_id": "203934945",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": true,
                "sde_type": [
                  "priceable"
                ]
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "800+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "800+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/588251-the-universal-studios-grand-hotel/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=1538.1&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjU4ODI1MSwibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6MTUzOC4xLCJwcmljZVR5cGUiOiJSRUFMX1RJTUUiLCJyYXRlSWQiOiIxMDMwMTExIiwic291cmNlIjoxLCJzdXBwbGllckFjY291bnRJZCI6IjcwMSIsInN1cHBsaWVySWQiOjd9",
              "feature_tag_list": [
                {
                  "bg_color": "#F0F7F7",
                  "icon_src": null,
                  "id": "669",
                  "line_color": null,
                  "text": "位於園區入口",
                  "text_color": "#00828A",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F0F7F7",
                  "icon_src": null,
                  "id": "668",
                  "line_color": null,
                  "text": "享提前入園權益",
                  "text_color": "#00828A",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "服务周到",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "干净整洁",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F0F7F7",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": "https://res.klook.com/image/upload/v1699859832/UED_new/Hotel/Hotel_Listing_page_2311/Icon_benefit1_48x48_3x.png",
                  "id": "669",
                  "max_line": null,
                  "name": "位於園區入口",
                  "prefix": null,
                  "text_color": "#00828A",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F0F7F7",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": "668",
                  "max_line": null,
                  "name": "享提前入園權益",
                  "prefix": null,
                  "text_color": "#00828A",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "服务周到",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "干净整洁",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.9",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 588251,
                "image_list": [
                  "https://res.klook.com/image/upload/v1630640686/hotel/fhctwuewxgckebar92cr.png",
                  "https://res.klook.com/image/upload/v1634029059/hotel/gu2aoealx1oitedf3ook.png",
                  "https://res.klook.com/image/upload/v1630640698/hotel/zwghroto2rbz01q7hpdv.png",
                  "https://res.klook.com/image/upload/v1634029047/hotel/snx1wernqug309ac9toi.png",
                  "https://image2-cdn.didatravel.com/3/Image/1430170/02002120008yrai1a21EF.jpg-q"
                ],
                "klook_product_id": 1100588251,
                "latitude": "39.853637",
                "local_name": "The Universal Studios Grand Hotel",
                "location": {
                  "desc": "距离环球度假区站 800m,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.678993",
                "max_score": "5",
                "name": "环球影城大酒店",
                "review_num_desc": "55条评价",
                "score_desc": "超赞",
                "star": 5,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "1,538.1",
                "has_stock": true,
                "original_price_desc": null,
                "price": "1538.1",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥4.5)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "1030111",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": true,
                "is_req_cc": true,
                "sde_type": [
                  "Combo Rate",
                  "Member Rate",
                  "Mobile Rate"
                ]
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "15K+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "15K+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/4836-sunworld-dynasty-hotel-beijing-wangfujing/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=713.5&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjQ4MzYsImxpc3RpbmdQYWdlTm9EYXRlU2VhcmNoIjoxLCJsaXN0aW5nVHJhY2VJZCI6IjVmMzFkNzFkIiwicHJpY2UiOjcxMy41LCJwcmljZVR5cGUiOiJGVUxMX0NBQ0hFIiwicmF0ZUlkIjoiMzgzNzgwMjE4Iiwic291cmNlIjoxLCJzdXBwbGllckFjY291bnRJZCI6IjEwNCIsInN1cHBsaWVySWQiOjF9",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "健身中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "商务中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "位于市中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "健身中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "商务中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "位于市中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.1",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 4836,
                "image_list": [
                  "https://i.travelapi.com/lodging/1000000/450000/444700/444676/0486306a_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/1000000/450000/444700/444676/e109d3eb_z.jpg",
                  "https://i.travelapi.com/lodging/1000000/450000/444700/444676/a2f9833e_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/6247564/0/9f0f8e49e2e97c1e92678327950c0e7e.jpg",
                  "https://q-xx.bstatic.com/xdata/images/hotel/840x460/627583409.jpg?k=a1f96d292ba2e91d9bd7074aaa687c7710893fcedec3f86b034a119840fd0dd7&o="
                ],
                "klook_product_id": 1100004836,
                "latitude": "39.91720440968943",
                "local_name": "Sunworld Dynasty Hotel Beijing Wangfujing",
                "location": {
                  "desc": "距离市中心 1.5km,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.40554699293521",
                "max_score": "5",
                "name": "北京天伦王朝饭店",
                "review_num_desc": "1K+条评价",
                "score_desc": "很好",
                "star": 5,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "713.5",
                "has_stock": true,
                "original_price_desc": null,
                "price": "713.5",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥2.1)",
                "stock_desc": "仅剩2间房了!",
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "383780218",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": true,
                "sde_type": [
                  "priceable"
                ]
              },
              "stay_plus_list": null,
              "stock_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "仅剩2间房了!",
                "text_color": "#FF5B00",
                "type": "hotel_manual_tag"
              },
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "3K+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "3K+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/279257-jw-marriott-hotel-beijing-central/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=1282.5&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjI3OTI1NywibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6MTI4Mi41LCJwcmljZVR5cGUiOiJGVUxMX0NBQ0hFIiwicmF0ZUlkIjoidjFfQ2dFdEVNcmlBUm9vQ2gweU1ESTFMVEF5TFRFNFZEQXdPakF3T2pBd0xqQXdNQ3N3Tnpvd01CQUJHTjhNS0FJNEFTSUNDQUk9X0NrVUl1cjJHWmhBSUlBSW8rTUxORWpBRVNna3dSREZPWHpFd01GQlFsTVVEZWlSbU5XTmtaR0V6WVMwMFpUTmxMVGt6TWpjdE5UaGpOUzAwWWpWalpERTJNMlV3T0RZU0FnZ0JHZ1lZQVNnRU1BRWlCQWdFR0FJPSIsInNvdXJjZSI6MSwic3VwcGxpZXJBY2NvdW50SWQiOiIyMDEiLCJzdXBwbGllcklkIjoyfQ%3D%3D",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "健身中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "商务中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "健身中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "商务中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.5",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 279257,
                "image_list": [
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/9000000/8220000/8210300/8210210/ec714ddb_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/9000000/8220000/8210300/8210210/00ba6b03_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/9000000/8220000/8210300/8210210/fe885d76_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/9000000/8220000/8210300/8210210/38d04ce7_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/9000000/8220000/8210300/8210210/9f3dde41_z.jpg"
                ],
                "klook_product_id": 1100279257,
                "latitude": "39.89423850239907",
                "local_name": "JW Marriott Hotel Beijing Central",
                "location": {
                  "desc": "距离宣武门站 500m,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.36850067391877",
                "max_score": "5",
                "name": "北京粤财JW万豪酒店",
                "review_num_desc": "236条评价",
                "score_desc": "超赞",
                "star": 5,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "1,282.5",
                "has_stock": true,
                "original_price_desc": null,
                "price": "1282.5",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥3.7)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "v1_CgEtEMriARooCh0yMDI1LTAyLTE4VDAwOjAwOjAwLjAwMCswNzowMBABGN8MKAI4ASICCAI=_CkUIur2GZhAIIAIo+MLNEjAESgkwRDFOXzEwMFBQlMUDeiRmNWNkZGEzYS00ZTNlLTkzMjctNThjNS00YjVjZDE2M2UwODYSAggBGgYYASgEMAEiBAgEGAI=",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "14K+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "14K+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/88865-crowne-plaza-beijing-international-airport-an-ihg-hotel/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=567.5&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjg4ODY1LCJsaXN0aW5nUGFnZU5vRGF0ZVNlYXJjaCI6MSwibGlzdGluZ1RyYWNlSWQiOiI1ZjMxZDcxZCIsInByaWNlIjo1NjcuNSwicHJpY2VUeXBlIjoiRlVMTF9DQUNIRSIsInJhdGVJZCI6IjIwMjUwMjE4fDIwMjUwMjE5fFd8NDM5fDkzMjk5fFJPTy5TVC0yfElEX0IyQl8yNnxST3xJRFUxNXwxfjJ%2BMHx8TiIsInNvdXJjZSI6MSwic3VwcGxpZXJBY2NvdW50SWQiOiI1MDEiLCJzdXBwbGllcklkIjo1fQ%3D%3D",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "健身中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "商务中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "健身中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "商务中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.0",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 88865,
                "image_list": [
                  "https://i.travelapi.com/lodging/2000000/1950000/1946400/1946396/77fd0d74_z.jpg",
                  "https://q-xx.bstatic.com/xdata/images/hotel/840x460/247130483.jpg?k=f62e676f1793740268c23f03ddc49fc12f3656514df3da38127aa07aadecd14f&o=",
                  "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/108/108718/108718_14031909460018758162.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/2000000/1950000/1946400/1946396/266807da_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/2000000/1950000/1946400/1946396/29462aa5_z.jpg"
                ],
                "klook_product_id": 1100088865,
                "latitude": "40.06237371196624",
                "local_name": "Crowne Plaza Beijing International Airport, an IHG Hotel",
                "location": {
                  "desc": "距离国展站 800m,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.54611579802366",
                "max_score": "5",
                "name": "北京临空皇冠假日酒店 - IHG 旗下酒店",
                "review_num_desc": "997条评价",
                "score_desc": "很好",
                "star": 5,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "567.5",
                "has_stock": true,
                "original_price_desc": null,
                "price": "567.5",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥1.6)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "20250218|20250219|W|439|93299|ROO.ST-2|ID_B2B_26|RO|IDU15|1~2~0||N",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "5K+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "5K+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/621091-hilton-beijing/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=1049.3&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjYyMTA5MSwibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6MTA0OS4zLCJwcmljZVR5cGUiOiJGVUxMX0NBQ0hFIiwicmF0ZUlkIjoidjFfQ2dFdEVNM2lBUm9vQ2gweU1ESTFMVEF5TFRFNFZEQXdPakF3T2pBd0xqQXdNQ3N3Tnpvd01CQUJHTjhNS0FJNEFTSUNDQUk9X0NrVUl3SW55QWhBSUlBSW85TGVpRHpBRVNna3dSREZPWHpFd01GQlFtc1VEZWlRMllUTXhZakZoWXkxa1lUVmlMV1kzWlRndFltVXpPUzFqTURCaU1tWXdOVGN4TjJJU0FnZ0JHZ1lZQVNnRU1BRWlCQWdFR0FJPSIsInNvdXJjZSI6MSwic3VwcGxpZXJBY2NvdW50SWQiOiIyMDEiLCJzdXBwbGllcklkIjoyfQ%3D%3D",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "泳池",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "健身中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "泳池",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "健身中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.1",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 621091,
                "image_list": [
                  "https://res.klook.com/klook-hotel/image/upload/trip/0204w120008ao1mo54D1A_R_550_412_R5.jpg",
                  "https://i.travelapi.com/lodging/1000000/20000/12100/12079/986baa9f_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/trip/0220q1200084a1xmt5906_R_550_412_R5.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/trip/20081f000001fxw708CA1_R_550_412_R5.jpg",
                  "http://photos.hotelbeds.com/giata/bigger/08/089411/089411a_hb_f_008.jpg"
                ],
                "klook_product_id": 1100621091,
                "latitude": "39.95039903678287",
                "local_name": "Hilton Beijing",
                "location": {
                  "desc": "距离亮马桥站 600m,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.44917165197577",
                "max_score": "5",
                "name": "北京希尔顿酒店",
                "review_num_desc": "394条评价",
                "score_desc": "很好",
                "star": 5,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "1,049.3",
                "has_stock": true,
                "original_price_desc": null,
                "price": "1049.3",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥3.1)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "v1_CgEtEM3iARooCh0yMDI1LTAyLTE4VDAwOjAwOjAwLjAwMCswNzowMBABGN8MKAI4ASICCAI=_CkUIwInyAhAIIAIo9LeiDzAESgkwRDFOXzEwMFBQmsUDeiQ2YTMxYjFhYy1kYTViLWY3ZTgtYmUzOS1jMDBiMmYwNTcxN2ISAggBGgYYASgEMAEiBAgEGAI=",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "100+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "100+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/588249-nuo-resort-hotel/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=1640.6&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjU4ODI0OSwibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6MTY0MC42LCJwcmljZVR5cGUiOiJSRUFMX1RJTUUiLCJyYXRlSWQiOiIxMDI5OTg0Iiwic291cmNlIjoxLCJzdXBwbGllckFjY291bnRJZCI6IjcwMSIsInN1cHBsaWVySWQiOjd9",
              "feature_tag_list": [
                {
                  "bg_color": "#F0F7F7",
                  "icon_src": null,
                  "id": "670",
                  "line_color": null,
                  "text": "毗鄰園區入口",
                  "text_color": "#00828A",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F0F7F7",
                  "icon_src": null,
                  "id": "668",
                  "line_color": null,
                  "text": "享提前入園權益",
                  "text_color": "#00828A",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "服务周到",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "干净整洁",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F0F7F7",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": "https://res.klook.com/image/upload/v1699859832/UED_new/Hotel/Hotel_Listing_page_2311/Icon_benefit1_48x48_3x.png",
                  "id": "670",
                  "max_line": null,
                  "name": "毗鄰園區入口",
                  "prefix": null,
                  "text_color": "#00828A",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F0F7F7",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": "668",
                  "max_line": null,
                  "name": "享提前入園權益",
                  "prefix": null,
                  "text_color": "#00828A",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "服务周到",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "干净整洁",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "5.0",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 588249,
                "image_list": [
                  "https://res.klook.com/image/upload/v1630583420/hotel/uplbc4t1at3zaqho4h5x.png",
                  "https://res.klook.com/image/upload/v1634027417/hotel/zelws0j80knr8e8ler7t.png",
                  "https://res.klook.com/image/upload/v1634027399/hotel/jbdoatkijha4zmicudqe.png",
                  "https://res.klook.com/image/upload/v1634032343/hotel/igszhkmnomfucakkirmx.png",
                  "https://res.klook.com/image/upload/v1634027362/hotel/vjhbfsfemaq2pieo9pc6.png"
                ],
                "klook_product_id": 1100588249,
                "latitude": "39.851243",
                "local_name": "NUO Resort Hotel",
                "location": {
                  "desc": "距离华庄站 800m,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.682",
                "max_score": "5",
                "name": "诺金度假酒店",
                "review_num_desc": "10条评价",
                "score_desc": "超赞",
                "star": 5,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "1,640.6",
                "has_stock": true,
                "original_price_desc": null,
                "price": "1640.6",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥4.8)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "1029984",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": true,
                "is_req_cc": true,
                "sde_type": [
                  "Combo Rate",
                  "Mobile Rate",
                  "Member Rate"
                ]
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": null,
              "booking_tag": null,
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/639742-hanting-hotel-beijing-chaoyang-railway-statio/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=366.2&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjYzOTc0MiwibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6MzY2LjIsInByaWNlVHlwZSI6IkZVTExfQ0FDSEUiLCJyYXRlSWQiOiIyMDI1MDIxOHwyMDI1MDIxOXxXfDQzOXw5NDQ4MDN8VFdOLklOfElEX0IyQl8yNnxST3xCTlJOQkZ8MX4yfjB8fE4iLCJzb3VyY2UiOjEsInN1cHBsaWVyQWNjb3VudElkIjoiNTAxIiwic3VwcGxpZXJJZCI6NX0%3D",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": null,
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 639742,
                "image_list": [
                  "https://res.klook.com/klook-hotel/image/upload/trip/200114000000ximv7D2C9_R_550_412_R5.jpg",
                  "https://i.travelapi.com/lodging/74000000/73280000/73274400/73274399/bcc0ad01_z.jpg",
                  "https://image2-cdn.didatravel.com/3/Image/584271/200a0b0000005u2taC63C_R_550_412.jpg-q",
                  "https://img.huazhu.com/hdata_hcube/1450f9dfb412a7cc863efa4a387dd3ca.jpg",
                  "http://ws-www.hantinghotels.com/Hcub/hotelmap/1000532.png"
                ],
                "klook_product_id": 1100639742,
                "latitude": "39.934832882228314",
                "local_name": "Hanting Hotel Beijing Chaoyang Railway Statio",
                "location": {
                  "desc": "距离Beijing Chaoyang Dongfeng Area General Labour Union 900m,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.496811572453",
                "max_score": null,
                "name": "汉庭北京朝阳站火车站酒店(原朝阳公园桥东店)",
                "review_num_desc": null,
                "score_desc": null,
                "star": 2,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "366.2",
                "has_stock": true,
                "original_price_desc": null,
                "price": "366.2",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥1.0)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "20250218|20250219|W|439|944803|TWN.IN|ID_B2B_26|RO|BNRNBF|1~2~0||N",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": true,
                "sde_type": [
                  "Combo Rate",
                  "Mobile Rate",
                  "Member Rate"
                ]
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "1K+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "1K+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/489084-stey-wangfujing/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=580.0&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjQ4OTA4NCwibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6NTgwLjAsInByaWNlVHlwZSI6IkZVTExfQ0FDSEUiLCJyYXRlSWQiOiIyODgyMDM1MjAiLCJzb3VyY2UiOjEsInN1cHBsaWVyQWNjb3VudElkIjoiMTA0Iiwic3VwcGxpZXJJZCI6MX0%3D",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "健身中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "商务中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "位于市中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "健身中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "商务中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "位于市中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.5",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 489084,
                "image_list": [
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/31000000/30070000/30067300/30067299/cdae5138_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/s2pix8/hotelImages/44851853/-1/93426f52248eb84b2f0423090de9eb25.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/31000000/30070000/30067300/30067299/b755f82d_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/31000000/30070000/30067300/30067299/e80e88eb_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/31000000/30070000/30067300/30067299/17b05aad_z.jpg"
                ],
                "klook_product_id": 1100489084,
                "latitude": "39.916446174125184",
                "local_name": "Stey Wangfujing",
                "location": {
                  "desc": "距离市中心 1.4km,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.40908156033113",
                "max_score": "5",
                "name": "Stey酒店(北京天安门王府井店)",
                "review_num_desc": "67条评价",
                "score_desc": "超赞",
                "star": 4,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "580.0",
                "has_stock": true,
                "original_price_desc": null,
                "price": "580.0",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥1.6)",
                "stock_desc": "仅剩3间房了!",
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "288203520",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "仅剩3间房了!",
                "text_color": "#FF5B00",
                "type": "hotel_manual_tag"
              },
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "7K+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "7K+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/396582-holiday-inn-express-beijing-temple-of-heaven-an-ihg-hotel/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=602.9&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjM5NjU4MiwibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6NjAyLjksInByaWNlVHlwZSI6IkZVTExfQ0FDSEUiLCJyYXRlSWQiOiIyMDI1MDIxOHwyMDI1MDIxOXxXfDQzOXwxMTAzNzF8REJMLlFOLTJ8SURfQjJCXzI2fEJCfElEVTE1fDF%2BMn4wfHxOIiwic291cmNlIjoxLCJzdXBwbGllckFjY291bnRJZCI6IjUwMSIsInN1cHBsaWVySWQiOjV9",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "健身中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "商务中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "健身中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "商务中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "3.9",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 396582,
                "image_list": [
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/3000000/2190000/2185100/2185021/5814654e_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/3000000/2190000/2185100/2185021/e125fb78_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/3000000/2190000/2185100/2185021/8827c374_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/3000000/2190000/2185100/2185021/ced3f8fc_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/3000000/2190000/2185100/2185021/c9f7bf12_z.jpg"
                ],
                "klook_product_id": 1100396582,
                "latitude": "39.879127111912034",
                "local_name": "Holiday Inn Express Beijing Temple of Heaven, an IHG Hotel",
                "location": {
                  "desc": "距离北京火车南站 2.1km,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.38477240799445",
                "max_score": "5",
                "name": "北京前门富力智选假日酒店",
                "review_num_desc": "521条评价",
                "score_desc": "满意",
                "star": 4,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "602.9",
                "has_stock": true,
                "original_price_desc": null,
                "price": "602.9",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥1.7)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "20250218|20250219|W|439|110371|DBL.QN-2|ID_B2B_26|BB|IDU15|1~2~0||N",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "100+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "100+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/310221-sheraton-beijing-lize-hotel/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=1642.6&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjMxMDIyMSwibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6MTY0Mi42LCJwcmljZVR5cGUiOiJGVUxMX0NBQ0hFIiwicmF0ZUlkIjoiMjk0MzA1MTU1Iiwic291cmNlIjoxLCJzdXBwbGllckFjY291bnRJZCI6IjEwNCIsInN1cHBsaWVySWQiOjF9",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "健身中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "服务周到",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "健身中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "服务周到",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.8",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 310221,
                "image_list": [
                  "https://i.travelapi.com/lodging/46000000/45190000/45182900/45182844/10c398c2_z.jpg",
                  "https://q-xx.bstatic.com/xdata/images/hotel/840x460/500306870.jpg?k=32c7a8566ed49ffa2404a7a3970515e84adcaaa8295ed452d524668c92cc2665&o=",
                  "https://q-xx.bstatic.com/xdata/images/hotel/840x460/500306864.jpg?k=0a20b0d86dc66eb7255f1d47c83b71e313c5efa188f6c024113717eb38d66d1d&o=",
                  "https://image2-cdn.didatravel.com/3/Image/1091935/200d1e000001f2d0q5885_R_550_412.jpg-q",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/46000000/45190000/45182900/45182844/c52b1871_z.jpg"
                ],
                "klook_product_id": 1100310221,
                "latitude": "39.86150115162427",
                "local_name": "Sheraton Beijing Lize Hotel",
                "location": {
                  "desc": "距离东管头站 600m,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.31228660305847",
                "max_score": "5",
                "name": "北京新青海喜来登酒店",
                "review_num_desc": "12条评价",
                "score_desc": "超赞",
                "star": 5,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "1,642.6",
                "has_stock": true,
                "original_price_desc": null,
                "price": "1642.6",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥4.8)",
                "stock_desc": "仅剩1间房了!",
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "294305155",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "仅剩1间房了!",
                "text_color": "#FF5B00",
                "type": "hotel_manual_tag"
              },
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "200+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "200+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/1326739-yunju-hotel-beijing-yonghe-palace-guijie-siheyuan/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=598.5&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjEzMjY3MzksImxpc3RpbmdQYWdlTm9EYXRlU2VhcmNoIjoxLCJsaXN0aW5nVHJhY2VJZCI6IjVmMzFkNzFkIiwicHJpY2UiOjU5OC41LCJwcmljZVR5cGUiOiJGVUxMX0NBQ0hFIiwicmF0ZUlkIjoiMzkzMzg3MDM3Iiwic291cmNlIjoxLCJzdXBwbGllckFjY291bnRJZCI6IjEwNCIsInN1cHBsaWVySWQiOjF9",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "位于市中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "位于市中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.6",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 1326739,
                "image_list": [
                  "https://i.travelapi.com/lodging/102000000/101350000/101341000/101340973/bf107d8f_z.jpg",
                  "https://i.travelapi.com/lodging/102000000/101350000/101341000/101340973/04c64297_z.jpg",
                  "https://i.travelapi.com/lodging/102000000/101350000/101341000/101340973/d4d3c86f_z.jpg",
                  "https://i.travelapi.com/lodging/102000000/101350000/101341000/101340973/3d6dfe6c_z.jpg",
                  "https://i.travelapi.com/lodging/102000000/101350000/101341000/101340973/797b47a4_z.jpg"
                ],
                "klook_product_id": 1101326739,
                "latitude": "39.92400183286286",
                "local_name": "Yunju Hotel Beijing Yonghe Palace Guijie Siheyuan",
                "location": {
                  "desc": "距离市中心 2.3km,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.41477606856283",
                "max_score": "5",
                "name": "北京雍和宫簋街四合院云居酒店",
                "review_num_desc": "18条评价",
                "score_desc": "超赞",
                "star": 3,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "598.5",
                "has_stock": true,
                "original_price_desc": null,
                "price": "598.5",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥1.7)",
                "stock_desc": "仅剩3间房了!",
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "393387037",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": true,
                "sde_type": [
                  "priceable"
                ]
              },
              "stay_plus_list": null,
              "stock_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "仅剩3间房了!",
                "text_color": "#FF5B00",
                "type": "hotel_manual_tag"
              },
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "13K+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "13K+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/495187-guo-ji-yi-yuan-hotel/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=581.4&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjQ5NTE4NywibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6NTgxLjQsInByaWNlVHlwZSI6IkZVTExfQ0FDSEUiLCJyYXRlSWQiOiJ2MV9DZ0V0RU13Q0dpZ0tIVEl3TWpVdE1ESXRNVGhVTURBNk1EQTZNREF1TURBd0t6QTNPakF3RUFFWTN3d29BamdCSWdJSUFRPT1fQ2gwSTdQL2Y5Z1FRQWlBcUtMVHQvd293QkVvSE1VUXhUbDh4VGxDWUJSSUNDQUVhQkNnRU1BRWlCQWdFR0FJPSIsInNvdXJjZSI6MSwic3VwcGxpZXJBY2NvdW50SWQiOiIyMDEiLCJzdXBwbGllcklkIjoyfQ%3D%3D",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "位于市中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "位于市中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "3.9",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 495187,
                "image_list": [
                  "https://pix8.agoda.net/hotelImages/449/449/449_14080710500020873385.jpg",
                  "https://q-xx.bstatic.com/xdata/images/hotel/840x460/265223076.jpg?k=e882e761a33f1901bc74a9d4be4a1e647a0c552006a6678d487e1ae90e4169d7&o=",
                  "https://image-cdn.didatravel.com/Image/CN/43608/HD/Featured Image/cfbd8a62_z.jpg",
                  "https://pix8.agoda.net/hotelImages/449/449/449_14030710510018592020.jpg",
                  "https://pix8.agoda.net/geo/poi/89452/2_89452.jpg"
                ],
                "klook_product_id": 1100495187,
                "latitude": "39.917550109250506",
                "local_name": "GUO JI YI YUAN HOTEL",
                "location": {
                  "desc": "距离市中心 1.5km,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.40497435110049",
                "max_score": "5",
                "name": "国际艺苑大酒店",
                "review_num_desc": "904条评价",
                "score_desc": "满意",
                "star": 4,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "581.4",
                "has_stock": true,
                "original_price_desc": null,
                "price": "581.4",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥1.7)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "v1_CgEtEMwCGigKHTIwMjUtMDItMThUMDA6MDA6MDAuMDAwKzA3OjAwEAEY3wwoAjgBIgIIAQ==_Ch0I7P/f9gQQAiAqKLTt/wowBEoHMUQxTl8xTlCYBRICCAEaBCgEMAEiBAgEGAI=",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "14K+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "14K+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/422420-hilton-beijing-wangfujing/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=1108.6&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjQyMjQyMCwibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6MTEwOC42LCJwcmljZVR5cGUiOiJGVUxMX0NBQ0hFIiwicmF0ZUlkIjoiMjI2MDU5MDk1Iiwic291cmNlIjoxLCJzdXBwbGllckFjY291bnRJZCI6IjEwNCIsInN1cHBsaWVySWQiOjF9",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "健身中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "位于市中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "健身中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "位于市中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.4",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 422420,
                "image_list": [
                  "https://i.travelapi.com/lodging/3000000/2060000/2059200/2059166/f0bfe722_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/agodahotel/161625/-1/5680097fe2ebf03ff43c21ee5bd75185.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/3000000/2060000/2059200/2059166/8845b286_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/3000000/2060000/2059200/2059166/ab3fcf3b_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/3000000/2060000/2059200/2059166/cda53b18_z.jpg"
                ],
                "klook_product_id": 1100422420,
                "latitude": "39.91149935233654",
                "local_name": "Hilton Beijing Wangfujing",
                "location": {
                  "desc": "距离市中心 1.0km,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.40148675540283",
                "max_score": "5",
                "name": "北京王府井希尔顿酒店",
                "review_num_desc": "948条评价",
                "score_desc": "很好",
                "star": 5,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "1,108.6",
                "has_stock": true,
                "original_price_desc": null,
                "price": "1108.6",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥3.2)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "226059095",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "15K+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "15K+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/272620-cordis-beijing-capital-airport-by-langham-hospitality-group/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=562.9&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjI3MjYyMCwibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6NTYyLjksInByaWNlVHlwZSI6IkZVTExfQ0FDSEUiLCJyYXRlSWQiOiIzODM3MTkxMjkiLCJzb3VyY2UiOjEsInN1cHBsaWVyQWNjb3VudElkIjoiMTA0Iiwic3VwcGxpZXJJZCI6MX0%3D",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "健身中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "商务中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "健身中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "商务中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.4",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 272620,
                "image_list": [
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/4000000/3720000/3712800/3712766/247b4000_z.jpg",
                  "https://i.travelapi.com/lodging/4000000/3720000/3712800/3712766/8f3f49b6_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/agodahotel/187025/-1/f6efaf627cdf6938dbf73e657cb5e8a8.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/4000000/3720000/3712800/3712766/da062346_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/4000000/3720000/3712800/3712766/417393cb_z.jpg"
                ],
                "klook_product_id": 1100272620,
                "latitude": "40.04542070002194",
                "local_name": "Cordis, Beijing Capital Airport by Langham Hospitality Group",
                "location": {
                  "desc": "距离Beijing Capital Airport Post and Telecommunication Bureau Dormitory Area Post and Telecommunication Office 500m,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.60022365336411",
                "max_score": "5",
                "name": "北京首都机场康得思酒店 - 朗廷酒店集团全新品牌",
                "review_num_desc": "1K+条评价",
                "score_desc": "很好",
                "star": 5,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "562.9",
                "has_stock": true,
                "original_price_desc": null,
                "price": "562.9",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥1.6)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "383719129",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "11K+人订过",
                "text_color": "#757575",
                "type": "hotel_manual_tag"
              },
              "booking_tag": {
                "bg_color": null,
                "bg_color_left": null,
                "bg_color_right": null,
                "bold": null,
                "border_color": null,
                "desc": null,
                "discount_desc": null,
                "hover_list": null,
                "icon": "https://res.klook.com/image/upload/v1702017293/UED_new/Hotel/Hotel_Listing_page_2311/icon_ThumbsUp.png",
                "id": null,
                "max_line": null,
                "name": "11K+人订过",
                "prefix": null,
                "text_color": "#212121",
                "time_left": null,
                "type": 1
              },
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/89588-hilton-beijing-capital-airport/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=699.0&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjg5NTg4LCJsaXN0aW5nUGFnZU5vRGF0ZVNlYXJjaCI6MSwibGlzdGluZ1RyYWNlSWQiOiI1ZjMxZDcxZCIsInByaWNlIjo2OTkuMCwicHJpY2VUeXBlIjoiRlVMTF9DQUNIRSIsInJhdGVJZCI6IjIyMDA4NzM4NSIsInNvdXJjZSI6MSwic3VwcGxpZXJBY2NvdW50SWQiOiIxMDQiLCJzdXBwbGllcklkIjoxfQ%3D%3D",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "健身中心",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "健身中心",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "4.4",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 89588,
                "image_list": [
                  "https://i.travelapi.com/lodging/3000000/2820000/2814500/2814413/9c96274e_z.jpg",
                  "https://q-xx.bstatic.com/xdata/images/hotel/840x460/605071610.jpg?k=2a631943574c1756c0acf4afe1a4a494edbbdaae62d89863861c53ce08a89069&o=",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/3000000/2820000/2814500/2814413/9e022b13_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/3000000/2820000/2814500/2814413/e582a0a8_z.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/travelapi/3000000/2820000/2814500/2814413/442f49e7_z.jpg"
                ],
                "klook_product_id": 1100089588,
                "latitude": "40.05401094185121",
                "local_name": "Hilton Beijing Capital Airport",
                "location": {
                  "desc": "距离3 号航站楼站 1.0km,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.62024728005436",
                "max_score": "5",
                "name": "北京首都机场希尔顿酒店",
                "review_num_desc": "798条评价",
                "score_desc": "很好",
                "star": 5,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "699.0",
                "has_stock": true,
                "original_price_desc": null,
                "price": "699.0",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥2.0)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "220087385",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": null,
              "booking_tag": null,
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/661217-xana-hotelle-beijing-qianmen-footbridge-metro-station/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=357.3&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjY2MTIxNywibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6MzU3LjMsInByaWNlVHlwZSI6IkZVTExfQ0FDSEUiLCJyYXRlSWQiOiJ2MV9DZ0V0RU13Q0dpZ0tIVEl3TWpVdE1ESXRNVGhVTURBNk1EQTZNREF1TURBd0t6QTNPakF3RUFFWTN3d29BamdCSWdJSUFRPT1fQ2h3STRvWHFNQkFDSUNvb3BKSFVFakFFU2djeFJERk9YekZPVUpnRkVnSUlBUm9HR0FFb0JEQUJJZ1FJQkJnQyIsInNvdXJjZSI6MSwic3VwcGxpZXJBY2NvdW50SWQiOiIyMDEiLCJzdXBwbGllcklkIjoyfQ%3D%3D",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "408",
                  "line_color": null,
                  "text": "免费停车 ",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": "408",
                  "max_line": null,
                  "name": "免费停车 ",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": null,
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 661217,
                "image_list": [
                  "https://res.klook.com/klook-hotel/image/upload/trip/200j190000017bo8kBFB6_R_550_412_R5.jpg",
                  "https://image-cdn.didatravel.com/2/Image/1082033/2_22256_02.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/s2pix8/geo/poi/215671/2_215671.jpg",
                  "https://q-xx.bstatic.com/xdata/images/hotel/840x460/637766193.jpg?k=53589ba3e0ba0bfa72723e8751700262e19ed68b57a91eaa56839c06026bda7e&o=",
                  "https://q-xx.bstatic.com/xdata/images/hotel/840x460/638541830.jpg?k=d456a956c26f2f2df086051f48b5740ec1c7fd6c0b143df02d663b9bb61353dc&o="
                ],
                "klook_product_id": 1100661217,
                "latitude": "39.88182333637082",
                "local_name": "Xana Hotelle Beijing Qianmen Footbridge Metro Station",
                "location": {
                  "desc": "距离北京火车南站 2.5km,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.38735368222758",
                "max_score": null,
                "name": "希岸酒店北京前门天桥地铁站店",
                "review_num_desc": null,
                "score_desc": null,
                "star": 3,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "357.3",
                "has_stock": true,
                "original_price_desc": null,
                "price": "357.3",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥1.0)",
                "stock_desc": null,
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "v1_CgEtEMwCGigKHTIwMjUtMDItMThUMDA6MDA6MDAuMDAwKzA3OjAwEAEY3wwoAjgBIgIIAQ==_ChwI4oXqMBACICoopJHUEjAESgcxRDFOXzFOUJgFEgIIARoGGAEoBDABIgQIBBgC",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": null,
              "wish": false
            },
            "type": "card"
          },
          {
            "data": {
              "book_tag": null,
              "booking_tag": null,
              "campaign_tag": null,
              "deep_link": "/zh-CN/hotels/detail/640373-james-joyce-coffetel-beijing-tongzhou-guoyuan-metro-station/?check_in=2025-02-18&check_out=2025-02-19&room_num=1&adult_num=1&child_num=0&age=&page_source=hotel_list_page&lowest_amount=257.0&source_price_token=eyJjdXJyZW5jeSI6IkNOWSIsImhvdGVsSWQiOjY0MDM3MywibGlzdGluZ1BhZ2VOb0RhdGVTZWFyY2giOjEsImxpc3RpbmdUcmFjZUlkIjoiNWYzMWQ3MWQiLCJwcmljZSI6MjU3LjAsInByaWNlVHlwZSI6IkZVTExfQ0FDSEUiLCJyYXRlSWQiOiJ2MV9DZ0V0RU13Q0dpZ0tIVEl3TWpVdE1ESXRNVGhVTURBNk1EQTZNREF1TURBd0t6QTNPakF3RUFFWTN3d29BamdCSWdJSUFRPT1fQ2gwSStOUDJxZ0VRQWlBQ0tOaVF2Ukl3QkVvSE1VUXhUbDh4VGxDWUJSSUNDQUVhQkNnRU1BRWlCQWdFR0FJPSIsInNvdXJjZSI6MSwic3VwcGxpZXJBY2NvdW50SWQiOiIyMDEiLCJzdXBwbGllcklkIjoyfQ%3D%3D",
              "feature_tag_list": [
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "408",
                  "line_color": null,
                  "text": "免费停车 ",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "服务周到",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "干净整洁",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                },
                {
                  "bg_color": "#F5F5F5",
                  "icon_src": null,
                  "id": "hotelFeature",
                  "line_color": null,
                  "text": "地铁附近",
                  "text_color": "#757575",
                  "type": "hotel_manual_tag"
                }
              ],
              "feature_tags": [
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": "408",
                  "max_line": null,
                  "name": "免费停车 ",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "服务周到",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "干净整洁",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                },
                {
                  "bg_color": "#F5F5F5",
                  "bg_color_left": null,
                  "bg_color_right": null,
                  "bold": null,
                  "border_color": null,
                  "desc": null,
                  "discount_desc": null,
                  "hover_list": null,
                  "icon": null,
                  "id": null,
                  "max_line": null,
                  "name": "地铁附近",
                  "prefix": null,
                  "text_color": "#757575",
                  "time_left": null,
                  "type": 1
                }
              ],
              "hotel_info": {
                "avg_score": "5.0",
                "city_id": 57,
                "city_name": "北京",
                "country_id": 1020,
                "country_name": "中国内地",
                "desc": null,
                "hotel_id": 640373,
                "image_list": [
                  "https://res.klook.com/klook-hotel/image/upload/trip/200n1e000001f74vu87EF_R_550_412_R5.jpg",
                  "https://image2-cdn.didatravel.com/3/Image/1124987/20061c000001df7p11FC9_R_550_412.jpg-q",
                  "https://res.klook.com/klook-hotel/image/upload/trip/20061c000001df7p11FC9_R_550_412_R5.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/trip/20061e000001f8fdgDD5F_R_550_412_R5.jpg",
                  "https://res.klook.com/klook-hotel/image/upload/trip/0205b120008k452bq07E3_R_550_412_R5.jpg"
                ],
                "klook_product_id": 1100640373,
                "latitude": "39.89329584187018",
                "local_name": "James Joyce Coffetel Beijing Tongzhou Guoyuan Metro Station",
                "location": {
                  "desc": "距离果园站 200m,北京",
                  "icon": "https://res.klook.com/image/upload/v1700793531/UED_new/Hotel/Hotel_Listing_page_2311/Icon_Destination_36x36_3x.png"
                },
                "longitude": "116.63895713560728",
                "max_score": "5",
                "name": "喆啡酒店北京通州果园地铁站店",
                "review_num_desc": "1条评价",
                "score_desc": "超赞",
                "star": 3,
                "time_zone": "+08:00"
              },
              "iht_ext_info": {
                "HasPayLater": false
              },
              "pricing": {
                "check_in_desc": null,
                "currency_symbol": "¥",
                "discount_type": null,
                "format_price": "257.0",
                "has_stock": true,
                "original_price_desc": null,
                "price": "257.0",
                "price_tag_list": [],
                "price_tags": [],
                "reward_desc": "赚Klook积分回馈(约¥0.7)",
                "stock_desc": "仅剩1间房了!",
                "tax_desc": "每晚房价含税"
              },
              "promotion_tag_list": [],
              "promotion_tags": [],
              "rate_id": "v1_CgEtEMwCGigKHTIwMjUtMDItMThUMDA6MDA6MDAuMDAwKzA3OjAwEAEY3wwoAjgBIgIIAQ==_Ch0I+NP2qgEQAiACKNiQvRIwBEoHMUQxTl8xTlCYBRICCAEaBCgEMAEiBAgEGAI=",
              "rate_plan_info": null,
              "report": {
                "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
                "is_cc": false,
                "is_req_cc": false,
                "sde_type": []
              },
              "stay_plus_list": null,
              "stock_tag": {
                "bg_color": null,
                "icon_src": null,
                "id": null,
                "line_color": null,
                "text": "仅剩1间房了!",
                "text_color": "#FF5B00",
                "type": "hotel_manual_tag"
              },
              "wish": false
            },
            "type": "card"
          }
        ],
        "current_page": 1,
        "report": {
          "buried_raw_id": "a82b2e38-14f0-4987-b5bc-1329149bc147",
          "is_cc": true,
          "is_req_cc": true,
          "sde_type": [
            "priceable",
            "Combo Rate",
            "Member Rate",
            "Mobile Rate"
          ]
        },
        "search_id": "d7a964cf-a006-4080-a302-058f8184ecdf",
        "total_count": 285,
        "using_icache": false
      },
      "_ddf": "fra",
      "error": "",
      "reason": "",
      "error_code": "0000",
      "cache": 0,
      "api_info": "today: max:15000 all[=++];expires:2031-01-01",
      "execution_time": "1.341",
      "server_time": "Beijing/2025-02-18 11:00:05",
      "client_ip": "127.0.0.1",
      "call_args": [],
      "api_type": "klook",
      "server_memory": "3.78MB",
      "last_id": false
    }
异常示例
{
        "error": "item-not-found",
        "reason": "商品没找到",
        "error_code": "2000",
        "success": 0,
        "cache": 0,
        "api_info": "today:0 max:10000",
        "execution_time": 0.081,
        "server_time": "Beijing/2020-06-10 23:44:00",
        "call_args": [],
        "api_type": "klook",
        "request_id": "15ee0ffc041242"}
相关资料
错误码解释
状态代码(error_code) 状态信息 详细描述 是否收费
0000success接口调用成功并返回相关数据
2000Search success but no result接口访问成功,但是搜索没有结果
4000Server internal error服务器内部错误
4001Network error网络错误
4002Target server error目标服务器错误
4003Param error用户输入参数错误忽略
4004Account not found用户帐号不存在忽略
4005Invalid authentication credentials授权失败忽略
4006API stopped您的当前API已停用忽略
4007Account stopped您的账户已停用忽略
4008API rate limit exceeded并发已达上限忽略
4009API maintenanceAPI维护中忽略
4010API not found with these valuesAPI不存在忽略
4012Please add api first请先添加api忽略
4013Number of calls exceeded调用次数超限忽略
4014Missing url param参数缺失忽略
4015Wrong pageToken参数pageToken有误忽略
4016Insufficient balance余额不足忽略
4017timeout error请求超时
5000unknown error未知错误
API 工具
如何获得此API
立即开通 有疑问联系客服QQ:QQ:3142401606 3142401606 万邦科技企业微信