curl --request POST \
--url https://api.apitwitter.com/twitter/timeline/latest \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"cookie": "<string>",
"proxy": "<string>",
"count": 20,
"cursor": "<string>"
}
'{
"data": {
"tweets": [
{
"id": "2031042244380107161",
"text": "RT @stackbtc_: We are excited to announce...",
"created_at": "Mon Mar 09 16:19:40 +0000 2026",
"author": {
"id": "244647486",
"userName": "saylor",
"name": "Michael Saylor",
"screen_name": "saylor",
"followers_count": 4945574,
"friends_count": 793,
"statuses_count": 7230,
"favourites_count": 10169,
"listed_count": 27371,
"description": "Bitcoin is Hope",
"location": "",
"profile_image_url_https": "",
"profile_image_url": "",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/244647486/1738781752",
"verified": false,
"is_blue_verified": true,
"created_at": "",
"can_dm": false
},
"likeCount": 0,
"retweetCount": 64,
"replyCount": 0,
"viewCount": 9,
"isRetweet": true,
"isReply": false
}
],
"has_next_page": true,
"next_cursor": "DAABCgABHC..."
},
"source": "latest"
}GET the chronological Latest/Following timeline from Twitter/X via ApiTwitter. Returns recent tweets with cookies and proxy.
curl --request POST \
--url https://api.apitwitter.com/twitter/timeline/latest \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"cookie": "<string>",
"proxy": "<string>",
"count": 20,
"cursor": "<string>"
}
'{
"data": {
"tweets": [
{
"id": "2031042244380107161",
"text": "RT @stackbtc_: We are excited to announce...",
"created_at": "Mon Mar 09 16:19:40 +0000 2026",
"author": {
"id": "244647486",
"userName": "saylor",
"name": "Michael Saylor",
"screen_name": "saylor",
"followers_count": 4945574,
"friends_count": 793,
"statuses_count": 7230,
"favourites_count": 10169,
"listed_count": 27371,
"description": "Bitcoin is Hope",
"location": "",
"profile_image_url_https": "",
"profile_image_url": "",
"profile_banner_url": "https://pbs.twimg.com/profile_banners/244647486/1738781752",
"verified": false,
"is_blue_verified": true,
"created_at": "",
"can_dm": false
},
"likeCount": 0,
"retweetCount": 64,
"replyCount": 0,
"viewCount": 9,
"isRetweet": true,
"isReply": false
}
],
"has_next_page": true,
"next_cursor": "DAABCgABHC..."
},
"source": "latest"
}Your API key