Details Conversation

GET/tw-v2/tweet/details

Description

Get detailed information about a specific tweet including full metadata, engagement metrics, and conversation context.

Parameters

ParameterTypeRequiredDescription
tweetIdstringrequiredUnique tweet/post ID
cursorstringoptionalPagination cursor for fetching next page of results. Obtained from previous response.
sortBystringoptionalSort order for conversation replies (Relevance, Recency, Likes). Default: Relevance

Code Examples

const params = new URLSearchParams({
  tweetId: '1234567890'
});

const response = await fetch(`https://api.tweetapi.com/tw-v2/tweet/details?${params}`, {
  method: 'GET',
  headers: {
    'X-API-Key': 'YOUR_API_KEY'
  }
});

const data = await response.json();
console.log(data);

Response

Success Response (200 OK)

200
{
  "data": {
    "id": "1973613995765518833",
    "conversationId": "1973613995765518833",
    "text": "Lowest price ever: Apple Watch SE 2 (GPS + Cellular) plunges to $189 https://t.co/rRVwqYFCYS #Apple",
    "displayTextRange": [
      0,
      99
    ],
    "author": {
      "id": "20542450",
      "username": "appleinsider",
      "name": "AppleInsider",
      "bio": "In-depth Apple news, analysis & reviews since 1997.",
      "location": "Cupertino, California",
      "website": "https://appleinsider.com",
      "pinnedTweetIds": [
        "1757293782838419554"
      ],
      "avatar": "https://pbs.twimg.com/profile_images/563064706462535680/h1p6ZJ7V_400x400.jpeg",
      "banner": "https://pbs.twimg.com/profile_banners/20542450/1436810030/1500x500",
      "profileImageShape": "Circle",
      "verified": false,
      "isBlueVerified": true,
      "verifiedType": null,
      "verifiedSince": null,
      "isIdentityVerified": false,
      "isProtected": false,
      "possiblySensitive": false,
      "profileInterstitialType": null,
      "withheldInCountries": [],
      "professional": {
        "type": "Business",
        "category": [
          {
            "id": 579,
            "name": "Media & News",
            "icon_name": "IconBriefcaseStroke"
          }
        ],
        "restId": "1649144731941601280"
      },
      "businessAccount": null,
      "creatorSubscriptionsCount": 0,
      "hasHiddenSubscriptions": false,
      "highlightsInfo": null,
      "hasGraduatedAccess": true,
      "isProfileTranslatable": false,
      "hasCustomTimelines": false,
      "isTranslator": false,
      "affiliatesHighlightedLabel": {},
      "defaultProfile": false,
      "defaultProfileImage": false,
      "followerCount": 732200,
      "followingCount": 68,
      "tweetCount": 106693,
      "listedCount": 10796,
      "mediaCount": 48095,
      "favoritesCount": 2077,
      "createdAt": "2009-02-10T20:27:09.000Z"
    },
    "source": null,
    "type": "tweet",
    "replyTo": null,
    "quotedTweet": null,
    "retweetedTweet": null,
    "likeCount": 3,
    "retweetCount": 1,
    "replyCount": 0,
    "quoteCount": 0,
    "bookmarkCount": 0,
    "viewCount": 1977,
    "media": [],
    "poll": null,
    "card": {
      "name": "",
      "url": "https://t.co/rRVwqYFCYS",
      "cardType": "",
      "type": "summary",
      "bindingValues": {
        "title": "",
        "description": "",
        "domain": "",
        "thumbnailImageUrl": null,
        "thumbnailImageColor": null,
        "playerUrl": null,
        "playerWidth": null,
        "playerHeight": null,
        "appId": null,
        "appName": null,
        "appStarRating": null,
        "appPriceAmount": null,
        "appPriceCurrency": null
      },
      "cardPlatform": {
        "platform": {
          "device": {
            "name": "",
            "version": ""
          },
          "audience": {
            "name": ""
          }
        }
      },
      "vanityUrl": null,
      "userRefsResults": null
    },
    "hashtags": [
      "Apple"
    ],
    "mentions": [],
    "urls": [
      "https://appleinsider.com/articles/25/10/01/lowest-price-ever-apple-watch-se-2-gps-cellular-plunges-to-189?utm_source=rss&utm_source=rss&utm_medium=Sendible&utm_campaign=RSS"
    ],
    "symbols": [],
    "possiblySensitive": false,
    "limitedActions": null,
    "isEdited": false,
    "editControl": null,
    "isTranslatable": false,
    "lang": "en",
    "translatedText": null,
    "hasBirdwatchNotes": false,
    "birdwatchPivot": null,
    "conversationControl": null,
    "isPromoted": false,
    "promotedMetadata": null,
    "createdAt": "2025-10-02T05:00:19.000Z",
    "place": null,
    "communityId": null,
    "communityResults": null
  }
}

API Playground

GET/tw-v2/tweet/details

Press ⌘ + Enter to execute

curl -X GET "https://api.tweetapi.com/tw-v2/tweet/details" \
  -H "X-API-Key: YOUR_API_KEY"
Response

Click "Try It!" to see the response