x-twitter.user_timeline
ActiveTool of Vee3
Fetch a user's recent X (Twitter) posts, pinned tweet, and profile summary. Provide user_name (handle without @) or rest_id (numeric user id). At least one is required. When rest_id is set, it takes precedence over user_name. Returns timeline entries with tweet text, engagement counts, media, quoted tweets, and author info. Use cursor from next_cursor to fetch the next page. Cost = 10 tokens.
Parameters schema
{
"type": "object",
"title": "get_x_user_timelineArguments",
"properties": {
"cursor": {
"anyOf": [
{
"type": "string",
"maxLength": 4096
},
{
"type": "null"
}
],
"title": "Cursor",
"default": null,
"description": "Pagination cursor from a previous response next_cursor field."
},
"rest_id": {
"anyOf": [
{
"type": "string",
"maxLength": 32
},
{
"type": "null"
}
],
"title": "Rest Id",
"default": null,
"description": "Numeric X user id (rest_id). When provided, user_name is ignored."
},
"user_name": {
"anyOf": [
{
"type": "string",
"maxLength": 50
},
{
"type": "null"
}
],
"title": "User Name",
"default": null,
"description": "X handle without the leading @ (for example elonmusk). Required when rest_id is omitted."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries