TwitterAPIs Docs
API ReferenceUser Reads

User Tweets and Replies

Like User Tweets, but the page also includes the replies the user posted to other accounts. Use this to capture a complete picture of a user's public activity. Cost: $0.0008 per call.

GET
/user/tweets_and_replies

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_and_replies?username=naval"
{  "tweets": [    {      "id": "1759123456789012345",      "text": "@founder Great point, here is the data.",      "in_reply_to_username": "founder",      "author": {        "id": "745273",        "username": "naval"      }    }  ],  "has_next_page": true,  "next_cursor": "DAABCgABF...",  "status": "success"}