/v1/users/{id}/tweetsBasic Reads1 base + 1 per item#List a user's recent original tweets and retweets in reverse-chronological order.
curl 'https://api.xfetch.io/v1/users/44196397/tweets' \
-H "Authorization: Bearer $XFETCH_API_KEY"| Name | In | Type | Required | Constraints | Description |
|---|---|---|---|---|---|
id | path | string | required | pattern: ^\d+$ | |
next_token | query | string | optional |
{
"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"
}
}
}