get_timeline
Retrieve tweets from your 'For You' timeline on X (Twitter), allowing you to specify count, cursor, and seen tweet IDs for personalized browsing.
Instructions
Get tweets from your home timeline (For You)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
cursor | No | ||
seen_tweet_ids | No |
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"
},
"seen_tweet_ids": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Seen Tweet Ids"
}
},
"type": "object"
}