GET
/
twitter
/
tweet
/
{id}
Get tweet details
curl --request GET \
  --url https://api.memoryproto.co/twitter/tweet/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "profile": {
      "id": "1732464385174761474",
      "username": "memoryprotocol",
      "displayName": "Memory",
      "followersCount": 1659,
      "followingCount": 414,
      "postsCount": 642,
      "creationDate": "Wed Dec 06 18:18:03 +0000 2023",
      "avatarUrl": "https://pbs.twimg.com/profile_images/1912179219758485514/WIKNnlqA_400x400.jpg",
      "externalUrl": "http://memoryproto.co",
      "location": "",
      "bio": "Where your digital identity can move across the internet  ☁︎",
      "farcasterProfile": {
        "id": "244819",
        "username": "memoryprotocol.eth",
        "displayName": "Memory",
        "followersCount": 929,
        "followingCount": 73,
        "avatarUrl": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/931fd467-68f8-4146-9487-a9017c0f6700/rectcrop3",
        "location": "",
        "bio": "The internet forgets you. Memory doesn’t."
      }
    },
    "tweet": {
      "id": "1925270368748806358",
      "url": "https://x.com/Immutable/status/1925270368748806358",
      "likesCount": 199,
      "retweetCount": 27,
      "quoteCount": 4,
      "replyCount": 41,
      "bookmarkCount": 10,
      "createdAt": "Wed May 21 19:20:00 +0000 2025",
      "isQuoteTweet": false,
      "text": "Weekly Rewards are now live on Immutable Play!\n\nPlayers who unlocked a Key can claim real rewards, including a total of 97,400 IMX.\n\nClaim your rewards now: https://t.co/wa2TUtvhth https://t.co/6ceWREKNEV",
      "media": [
        {
          "type": "video",
          "url": "https://video.twimg.com/amplify_video/1925178735726362624/vid/avc1/1920x1080/x-n9CL58Ij4VBWue.mp4?tag=21"
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string
required

Use an authorization token prefixed with Bearer. You can get your API key at https://memoryproto.co/dashboard.

Example:

"Bearer mem_xxx"

Path Parameters

id
string
required

Tweet id. For example, 1925251453805027380 or 1914711182738428252.

Examples:

"1925251453805027380"

"1914711182738428252"

Response

200
application/json

Successful response containing the tweet details.

The response is of type object.