fourget_web_search
Search the web using the 4get meta search engine to retrieve web results with titles, URLs, descriptions, and optional featured answers, supporting pagination and extended search mode.
Instructions
Search the web using the 4get meta search engine. Returns web results with titles, URLs, descriptions, and optional featured answers. Supports pagination via the 'npt' token and extended search mode.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
extended_search | No | ||
extra_params | No | ||
page_token | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"extended_search": {
"default": false,
"type": "boolean"
},
"extra_params": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null
},
"page_token": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"query": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}