search_tweets
Find tweets matching a search query and retrieve up to 100 results. Use this tool to analyze or monitor social media content on X (Twitter) with precision.
Instructions
Search for tweets using a query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of tweets to retrieve (max 100) | |
query | Yes | Search query for tweets |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"description": "Number of tweets to retrieve (max 100)",
"type": "number"
},
"query": {
"description": "Search query for tweets",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}