Endpoints
Get tweet details
Retrieve the details of a tweet from its id.
GET
/
twitter
/
tweet
/
{id}
Copy
curl --request GET \
--url https://graph.memoryproto.co/twitter/tweet/{id} \
--header 'Authorization: <authorization>'
Copy
{
"data": {
"profile": {
"id": "295218901",
"username": "vitalikbuterin",
"followersCount": 5767997,
"followingCount": 488,
"postsCount": 20799,
"bio": "I choose balance. First-level balance.\n\nmi pinxe lo crino tcati\n\nhttps://t.co/gCQrmCb0ih",
"avatarUrl": "https://pbs.twimg.com/profile_images/1895872023944937472/Uoyc5-p8_400x400.jpg",
"creationDate": "Sun May 08 16:03:03 +0000 2011",
"displayName": "vitalik.eth",
"externalUrl": null,
"location": "Earth"
},
"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,
"language": "en",
"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"
}
]
}
}
}
Headers
Use an authorization token prefixed with Bearer
. You can get your API key at https://memoryproto.co/dashboard.
Example:
"Bearer mem_xxx"
Path Parameters
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
.
Copy
curl --request GET \
--url https://graph.memoryproto.co/twitter/tweet/{id} \
--header 'Authorization: <authorization>'
Copy
{
"data": {
"profile": {
"id": "295218901",
"username": "vitalikbuterin",
"followersCount": 5767997,
"followingCount": 488,
"postsCount": 20799,
"bio": "I choose balance. First-level balance.\n\nmi pinxe lo crino tcati\n\nhttps://t.co/gCQrmCb0ih",
"avatarUrl": "https://pbs.twimg.com/profile_images/1895872023944937472/Uoyc5-p8_400x400.jpg",
"creationDate": "Sun May 08 16:03:03 +0000 2011",
"displayName": "vitalik.eth",
"externalUrl": null,
"location": "Earth"
},
"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,
"language": "en",
"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"
}
]
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.