Skip to content

Twitter / X Downloader

Heavstal X Engine allows you to extract media from Tweets. It supports both legacy twitter.com links and modern x.com links. It automatically resolves the highest quality available.

POST /twitter

FieldTypeRequiredDescription
urlstringYesThe link to the Tweet containing the video or GIF.
const res = await fetch('https://heavstal.com.ng/api/v1/twitter', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'YOUR_API_KEY'
},
body: JSON.stringify({
url: 'https://x.com/user/status/123456789'
})
});
{
"status": "success",
"creator": "HEAVSTAL TECH",
"data": {
"description": "This is a funny video caption",
"thumbnail": "https://pbs.twimg.com/media/...",
"video_hd": "https://video.twimg.com/.../vid/720x1280/file.mp4",
"video_sd": "https://video.twimg.com/.../vid/320x560/file.mp4",
"audio": null
}
}