Twitter Profile API
Get the account snapshot and a compact activity sample in one call.
Twitter Profile API →Workflow · Twitter timeline API
Page through a public account's recent original posts and reposts as normalized tweet records, with one continuation contract for repeatable reads.
Copyable request + contract response example
The example is sourced from the endpoint documentation manifest. A separate sibling endpoint includes replies when that broader activity view is required.
curl 'https://api.xfetch.io/v1/users/44196397/tweets' \ -H "Authorization: Bearer $XFETCH_API_KEY"
{
"data": [
{
"id": "2055734812669865997",
"text": "These come from court transcripts",
"author_id": "44196397",
"created_at": "2026-05-16T19:39:07.000Z",
"lang": "en",
"conversation_id": "2055734812669865997",
"possibly_sensitive": false,
"like_count": 45028,
"retweet_count": 9207,
"reply_count": 2190,
"quote_count": 236,
"bookmark_count": 3116,
"is_quote_status": true,
"entities": {
"hashtags": [],
"urls": [],
"mentions": []
},
"display_text_range": [
0,
33
],
"quoted_tweet_id": "2055714457343471890"
}
],
"meta": {
"request_id": "req_01HXFETCHEXAMPLE",
"credits": {
"charged": 2,
"remaining": 998
},
"pagination": {
"next_token": "tok_2"
}
}
}One workflow
Use the timeline endpoint for recurring account intelligence, creator tracking, or ingestion jobs where chronological public activity is the useful unit.
Pass the account's numeric user ID to the timeline path.
Store the normalized tweet records your application needs.
When a next token is present, pass it unchanged to fetch the next page.
Code-derived cost
The rule and worked charge below come from the shared endpoint-pricing catalog used by billing and the API reference.
Current rule
Each successful page has a base component and an item component based on the number of tweet records returned.
Documented response example
2 creditsThe example contains 1 primary record. Failed validation, authentication, insufficient-credit, rate-limit, service-side, and internal failures are not charged.
FAQ
Google sign-in opens the dashboard playground with this endpoint selected.