Appearance
general 字段说明
general 是一个对象,表示本次搜索请求的通用上下文信息,主要包含搜索来源与关键词。
| 字段名 | 说明 |
|---|---|
| count | 搜索全站结果总数 |
| engine | 当前使用的搜索引擎标识。例如:google、bing 等 |
| search_type | 搜索类型。例如:url,binary。 |
| url | 用户实际搜索的关键词或短语 |
| type | 搜索类型,当前为 lens,表示以图搜图 |
| hl | 搜索结果语言 |
测试用例
bash
curl --location 'https://api.serp.hk/serp/google/lens/advanced' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' \
--header 'Content-Type: application/json' \
--data '{
"hl": "zh-cn",
"url": "https://www.shutterstock.com/image-photo/potala-palace-summer-lhasa-tibet-260nw-518790361.jpg"
}' --compressed返回结果
json
{
"count": 194000000,
"engine": "google",
"type": "lens",
"url": "https://www.shutterstock.com/image-photo/potala-palace-summer-lhasa-tibet-260nw-518790361.jpg",
"hl": "zh-cn",
"search_type": "url"
}