research-with-keywords
Conduct focused Web3 research by analyzing tokens and their related keywords to uncover relevant insights and trends in the crypto space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keywords | Yes | Keywords to search for | |
tokenName | Yes | Name of the token | |
tokenTicker | Yes | Ticker symbol of the token |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"keywords": {
"description": "Keywords to search for",
"items": {
"type": "string"
},
"type": "array"
},
"tokenName": {
"description": "Name of the token",
"type": "string"
},
"tokenTicker": {
"description": "Ticker symbol of the token",
"type": "string"
}
},
"required": [
"tokenName",
"tokenTicker",
"keywords"
],
"type": "object"
}