Skip to main content
POST
/
twitter
/
timeline
/
latest
Latest Timeline
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"
}

Authorizations

X-API-Key
string
header
required

Your API key

Body

application/json

Twitter auth cookie

proxy
string
required

Proxy URL to use for the request (HTTP or SOCKS5)

count
integer
default:20

Number of tweets to return, 1-100 (default: 20)

Required range: 1 <= x <= 100
cursor
string

Pagination cursor for the next page

Response

Timeline tweets

status
string

Response status

Example:

"success"

msg
string

Response message

data
any

Response data