x_get_tweets
Fetch one page of an X account's timeline. identifier is a screen name, profile URL, or numeric id (auto-detected). mode picks the view: posts (default) is the account's own tweets, posts_and_replies includes their replies, highlights is the account's pinned highlights tab. include_retweets (default true) filters retweets out when false. Costs 4 credits per page; a cursor page is a NEW call priced the same way. Returns tweet summaries with engagement counts and a cursor for older tweets. Use this for 'what has X been posting', voice checks before outreach, or drafting replies in an account's register. For keyword search across all of X use x_search; for one specific tweet you already have, x_get_tweet.
Remote (network-hosted)
Other tools also called x_get_tweets?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"mode": {
"type": "string"
},
"cursor": {
"type": "string"
},
"freshness": {
"type": "string"
},
"identifier": {
"type": "string",
"description": "Screen name without the @, profile URL, or numeric account id."
},
"max_credits": {
"type": "number"
},
"include_retweets": {
"type": "boolean"
}
}
}