Tweet Carousel

Description: Displays relevant tweets from Twitter related to the search query in a scrollable carousel format.

API Response Structure:

{
  "tweets": [
    {
      "text": "Just announced: Our new product launch! #Innovation",
      "link": {
        "url": "https://twitter.com/username/status/123456789",
        "visibleText": "View on Twitter",
        "htmlJump": false
      },
      "author": {
        "name": "Company Name",
        "handle": "@username",
        "verified": true
      },
      "metrics": {
        "likes": 1500,
        "retweets": 500,
        "replies": 100
      },
      "timestamp": "2h ago"
    }
  ],
  "hasMore": true,
  "type": "tweetCarousel"
}

Fields:

  • tweets (array): Collection of tweets

    • text (string): Tweet content

    • link (object): Tweet URL information

    • author (object): Tweet author details

    • metrics (object): Engagement metrics

    • timestamp (string): Posting time

  • hasMore (boolean): More tweets available

  • type (string): Always "tweetCarousel"