searchTwitter
Search Twitter with natural language queries to find relevant tweets, filtered by latest or top results, with customizable limits for precise output.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
query | Yes | ||
section | No | latest |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 20,
"exclusiveMinimum": 0,
"type": "integer"
},
"query": {
"minLength": 1,
"type": "string"
},
"section": {
"default": "latest",
"enum": [
"latest",
"top"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}