search
Find Web3-related information quickly using this tool. Conduct searches across web, news, images, or videos with a simple query to enhance your crypto and blockchain research.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Search query | |
searchType | No | Type of search | web |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "Search query",
"type": "string"
},
"searchType": {
"default": "web",
"description": "Type of search",
"enum": [
"web",
"news",
"images",
"videos"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}