search
Perform real-time Google searches, extract results, and bypass anti-bot mechanisms using structured queries with customizable language, region, and timeout settings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | 搜索结果的语言,例如 zh-CN, en-US 等,默认为 zh-CN | |
limit | No | 返回的搜索结果数量,默认为10 | |
query | Yes | 搜索查询字符串 | |
region | No | 搜索结果的地区,例如 cn, com, co.jp 等,默认为 cn | |
timeout | No | 搜索操作的超时时间(毫秒),默认为60000 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"language": {
"description": "搜索结果的语言,例如 zh-CN, en-US 等,默认为 zh-CN",
"type": "string"
},
"limit": {
"description": "返回的搜索结果数量,默认为10",
"type": "number"
},
"query": {
"description": "搜索查询字符串",
"type": "string"
},
"region": {
"description": "搜索结果的地区,例如 cn, com, co.jp 等,默认为 cn",
"type": "string"
},
"timeout": {
"description": "搜索操作的超时时间(毫秒),默认为60000",
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}