research-source
Analyze and verify crypto token data by inputting token name, ticker, and a single source for detailed research.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
source | Yes | Single source to research | |
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": {
"source": {
"description": "Single source to research",
"type": "string"
},
"tokenName": {
"description": "Name of the token",
"type": "string"
},
"tokenTicker": {
"description": "Ticker symbol of the token",
"type": "string"
}
},
"required": [
"tokenName",
"tokenTicker",
"source"
],
"type": "object"
}