Skip to content
GET/user/tweets$0.0008 / call

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.

Request

curl "https://api.twitterapis.com/user/tweets?username=naval" \
  -H "Authorization: Bearer $TWITTERAPIS_KEY"

Parameters

ParameterTypeRequiredDescription
usernamestringrequired

Handle without the leading @.

Example: naval

cursorstringoptional

Pagination cursor from a previous response.

Response

FieldTypeDescription
tweetsarray<Tweet>

Timeline tweets for this page.

has_next_pageboolean

True when more results are available; pass next_cursor to fetch them.

next_cursorstring

Opaque cursor token for the next page. Empty string on the final page.

statusstring

Request status, "success" on a normal response.

Example response

{
  "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"
}

Pricing for this endpoint

user/tweets costs $0.0008 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.

Related endpoints