search_twitter
Query X (Twitter) to retrieve specific tweets, filter results by product, count, or cursor for precise and targeted data collection.
Instructions
Search Twitter with a query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
cursor | No | ||
product | No | Top | |
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 100,
"title": "Count"
},
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cursor"
},
"product": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "Top",
"title": "Product"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}