searchTwitter
Search and filter Twitter data by query, section, engagement metrics, date range, and language to analyze Ethereum-related discussions and trends.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
language | No | ||
limit | No | ||
min_likes | No | ||
min_replies | No | ||
min_retweets | No | ||
query | Yes | ||
section | No | latest | |
start_date | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"end_date": {
"type": "string"
},
"language": {
"type": "string"
},
"limit": {
"default": 10,
"exclusiveMinimum": 0,
"type": "integer"
},
"min_likes": {
"type": "integer"
},
"min_replies": {
"type": "integer"
},
"min_retweets": {
"type": "integer"
},
"query": {
"minLength": 1,
"type": "string"
},
"section": {
"default": "latest",
"enum": [
"latest",
"top"
],
"type": "string"
},
"start_date": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}