TwitterAPIs Docs
API ReferenceUser Reads

User Tweets

Page through a user's public timeline, cursor-paginated at roughly 20 tweets per call. Returns original tweets and retweets; use User Tweets and Replies to also include replies. Cost: $0.0008 per call.

GET
/user/tweets

Authorization

bearerAuth
AuthorizationBearer <token>

Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.

In: header

Query Parameters

username*string

Handle without the leading @.

cursor?string

Pagination cursor from a previous response.

Response Body

application/json

curl -X GET "https://example.com/user/tweets?username=naval"
{  "tweets": [    {      "id": "1759123456789012345",      "text": "Reading > scrolling.",      "created_at": "Tue Feb 20 14:02:11 +0000 2026",      "author": {        "id": "745273",        "username": "naval"      },      "like_count": 4821    }  ],  "has_next_page": true,  "next_cursor": "DAABCgABF...",  "status": "success"}