Twitter (X) video & image downloader — pass a public tweet / X post URL, get direct CDN me
Twitter (X) video & image downloader — pass a public tweet / X post URL, get direct CDN media links: .mp4 video URLs with thumbnails plus every image in the post, ready to stream, embed, re-host, or download. No scraping or browser automation.
5000 (raw units)
price
20
calls / 30d
11
unique payers
2026-09-17
updated
Provider
xmedia.use.x402atlas.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb708AF3BcE13517357E498f8fFd277dE93db9ef5",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0xb708AF3BcE13517357E498f8fFd277dE93db9ef5",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "5000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0xb708AF3BcE13517357E498f8fFd277dE93db9ef5",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "5000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "ASt6xvRyQ7ntERsmcYVMdLqZvz1GEN8Fzexzq62tXrNQ",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "media-processing",
"info": {
"input": {
"method": "GET",
"queryParams": {
"url": "https://x.com/BarackObama/status/896523232098078720"
},
"type": "http"
},
"output": {
"example": {
"image_count": 1,
"images": [
"https://pbs.twimg.com/media/AbC123.jpg"
],
"post_url": "https://x.com/user/status/1234567890",
"queried_at": "2026-07-05T12:00:00Z",
"video_count": 1,
"videos": [
{
"thumbnail": "https://pbs.twimg.com/amplify_video_thumb/1234567890/img/xyz.jpg",
"url": "https://video.twimg.com/amplify_video/1234567890/vid/avc1/1920x1080/abc.mp4?tag=28"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"url": {
"description": "Full URL of a public tweet / X post on x.com or twitter.com; the path must contain /status/<id>, e.g. https://x.com/user/status/1234567890",
"format": "uri",
"pattern": "^https?://(www\\.|mobile\\.)?(x\\.com|twitter\\.com)/.*/status/.*$",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"image_count": {
"description": "Number of images found in the post",
"minimum": 0,
"type": "integer"
},
"images": {
"description": "Direct CDN image URLs; always present, never null",
"items": {
"type": "string"
},
"type": "array"
},
"post_url": {
"description": "Echoed input tweet URL",
"type": "string"
},
"queried_at": {
"description": "UTC timestamp when the upstream was queried",
"format": "date-time",
"type": "string"
},
"video_count": {
"description": "Number of videos found in the post",
"minimum": 0,
"type": "integer"
},
"videos": {
"description": "Always present, never null; empty if the post has no video",
"items": {
"properties": {
"thumbnail": {
"description": "Thumbnail image CDN URL",
"type": "string"
},
"url": {
"description": "Direct CDN .mp4 URL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"queried_at",
"post_url",
"video_count",
"image_count",
"videos",
"images"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"twitter",
"x",
"video-downloader",
"twitter-video",
"tweet-media",
"image-downloader",
"social-media",
"mp4",
"cdn-links",
"download"
]
}
}Use it
curl
curl "https://xmedia.use.x402atlas.com/tweet" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://xmedia.use.x402atlas.com/tweet");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://xmedia.use.x402atlas.com/tweet")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/760.json, and this resource appears in /discovery/resources and /discovery/search.