RSS3 Documentation

Get Tweets By Handle

Get tweets from a specific Twitter handle

GET
/api/v1/tweets/{handle}
/api/v1/tweets/{handle}

Path Parameters

handle
Required
Handle

Twitter handle to fetch tweets for

Query Parameters

typeType

Tweet type filter: tweet, reply, retweet, or quote

limitLimit

Number of tweets to return

Default: 50
curl -X GET "https://ai.rss3.io/api/v1/tweets/string?type=tweet&limit=50"

Successful Response

[
  {
    "tweet_id": "string",
    "handle": "string",
    "content": "string",
    "created_at": "2019-08-24T14:15:22Z",
    "type": "tweet"
  }
]