google_search_shopping
Retrieve shopping results from Google by entering a query, specifying location, language, and page number. Optimize searches with autocomplete and result count adjustments for tailored product discovery.
Instructions
Search Google for results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autocorrect | No | Automatically correct | |
gl | No | The country to search in, e.g. us, uk, ca, au, etc. | |
hl | No | The language to search in, e.g. en, es, fr, de, etc. | |
location | No | The location to search in, e.g. San Francisco, CA, USA | |
num | No | The number of results to return, max is 100 | |
page | No | The page number to return, first page is 1 | |
q | Yes | The query to search for |
Input Schema (JSON Schema)
{
"properties": {
"autocorrect": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": true,
"description": "Automatically correct",
"title": "Autocorrect"
},
"gl": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The country to search in, e.g. us, uk, ca, au, etc.",
"title": "Gl"
},
"hl": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The language to search in, e.g. en, es, fr, de, etc.",
"title": "Hl"
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The location to search in, e.g. San Francisco, CA, USA",
"title": "Location"
},
"num": {
"default": 10,
"description": "The number of results to return, max is 100",
"maximum": 100,
"title": "Num",
"type": "integer"
},
"page": {
"anyOf": [
{
"minimum": 1,
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"description": "The page number to return, first page is 1",
"title": "Page"
},
"q": {
"description": "The query to search for",
"title": "Q",
"type": "string"
}
},
"required": [
"q"
],
"title": "ShoppingRequest",
"type": "object"
}