Appearance
people_also_search_for 字段说明
people_also_search_for 是一个数组,表示系统推荐的你可能感兴趣的其他关键词或条目,通常与当前主题有关。

| 字段名 | 说明 |
|---|---|
| text | 推荐词条的文本内容 |
| rank | 当前模块在自然搜索列表中的排名位置,整数,越小越靠前 |
测试用例
bash
curl -H "Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" 'https://api.serp.hk/serp/google/search/basic' -X POST -d '{"q":"奔驰"}' --compressed返回结果
json
[
{
"rank": 11,
"text": "奔驰美国官网"
},
{
"rank": 11,
"text": "奔驰中国"
},
{
"rank": 11,
"text": "奔驰官网"
},
{
"rank": 11,
"text": "奔驰价格"
},
{
"rank": 11,
"text": "奔驰车型"
},
{
"rank": 11,
"text": "奔驰英文"
},
{
"rank": 11,
"text": "奔驰suv"
},
{
"rank": 11,
"text": "奔驰amg"
}
]