GET
/user/tweets_and_replies$0.0008 / callUser 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.
Request
curl "https://api.twitterapis.com/user/tweets_and_replies?username=naval" \
-H "Authorization: Bearer $TWITTERAPIS_KEY"Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
username | string | required | Handle without the leading @. Example: |
cursor | string | optional | Pagination cursor from a previous response. |
Response
| Field | Type | Description |
|---|---|---|
tweets | array<Tweet> | Timeline tweets and replies for this page. |
has_next_page | boolean | True when more results are available; pass next_cursor to fetch them. |
next_cursor | string | Opaque cursor token for the next page. Empty string on the final page. |
status | string | Request status, "success" on a normal response. |
Example response
{
"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"
}Pricing for this endpoint
user/tweets_and_replies costs $0.0008 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.