search_google_videos
Search for videos on Google using specific queries, filters, and location parameters. Retrieve video results tailored to language, country, device, and time preferences.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cr | No | 国家限制 | |
device | No | 设备类型 | desktop |
filter | No | 过滤结果 | 1 |
gl | No | 地理位置 | us |
google_domain | No | Google域名 | google.com |
hl | No | 语言 | en |
location | No | 位置 | |
lr | No | 语言限制 | |
nfpr | No | 不进行拼写检查 | 0 |
num | No | 结果数量 | 10 |
page | No | 页码 | 1 |
q | Yes | 搜索查询 | |
safe | No | 安全搜索 | off |
time_period | No | 时间段 | |
time_period_max | No | 最大时间段 | |
time_period_min | No | 最小时间段 | |
uule | No | 位置编码 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cr": {
"description": "国家限制",
"type": "string"
},
"device": {
"default": "desktop",
"description": "设备类型",
"type": "string"
},
"filter": {
"default": "1",
"description": "过滤结果",
"type": "string"
},
"gl": {
"default": "us",
"description": "地理位置",
"type": "string"
},
"google_domain": {
"default": "google.com",
"description": "Google域名",
"type": "string"
},
"hl": {
"default": "en",
"description": "语言",
"type": "string"
},
"location": {
"description": "位置",
"type": "string"
},
"lr": {
"description": "语言限制",
"type": "string"
},
"nfpr": {
"default": "0",
"description": "不进行拼写检查",
"type": "string"
},
"num": {
"default": "10",
"description": "结果数量",
"type": "string"
},
"page": {
"default": "1",
"description": "页码",
"type": "string"
},
"q": {
"description": "搜索查询",
"type": "string"
},
"safe": {
"default": "off",
"description": "安全搜索",
"type": "string"
},
"time_period": {
"description": "时间段",
"type": "string"
},
"time_period_max": {
"description": "最大时间段",
"type": "string"
},
"time_period_min": {
"description": "最小时间段",
"type": "string"
},
"uule": {
"description": "位置编码",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
}