get_latest_timeline
Fetch tweets from your X (Twitter) home timeline to stay updated with accounts you follow. Specify the number of tweets to retrieve within the count parameter.
Instructions
Get tweets from your home timeline (Following)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 100,
"title": "Count"
}
},
"type": "object"
}