Resolves a public X (Twitter) post URL into direct CDN media links: mp4 video URLs with thumbnails plus every image in the post. Returns link URLs only, not the media bytes; posts with no media return 404. $0.005 per call in USDC on Base.
Pay from $0.005 per request in USDC on Base / Solana, settled onchain via the x402 protocol, no signup, no API key needed.
ASSESSMENT
updated 4h agoEvidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.
reliability 100%
- uptime 24h
- 100%
- uptime 7d
- 100%
- uptime 30d
- 100%
- uptime 90d
- 100%
- response p95
- 1162ms
- avg response
- 671ms
- total checks
- 47
compliance A (11/11)
11 of 11 x402 conformance checks pass. Full checklist below.
price $0.005 (p32 in Content)
- price (min)
- $0.005
- category percentile (min)
- p32 in Content
- endpoints / prices
- 1 / 1
- model
- flat
- stability
- 100%
risk clean
No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.
traction $0.0005 30d · 0 buyers
- volume 30d
- $0.0005
- buyers 30d
- 0
- settlements 30d
- 0
- last settlement
- 2026-07-15
- top buyer share
- 50% of 30d volume
- trend 7d vs 30d
- 2.14x the 30d daily rate
- networks
- eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d
Attributed pro-quota: this payout address is shared, so volume and buyers are the operator-level figure divided by the services sharing it. A declared convention, not an individually observed measure, and still a conservative undercount.
Top buyer share is a concentration signal, not part of the ranking score.
WHAT IT DOES
ai-derivedDownloads media content from Twitter (X) posts by providing direct CDN URLs for videos and images.
- category
- media-downloader
- in
- query params
- auth
- none
AI-generated summary. The measured data is never altered by it.
ENDPOINTS
| METHOD | PATH | DESCRIPTION | PRICE | NETWORK | ASSET |
|---|---|---|---|---|---|
| GET | /tweet | $0.005 | Base/Solana | USDC |
REQUEST / RESPONSE EXAMPLE
An unpaid request to GET /tweet returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.
curl -i 'https://xmedia.use.x402atlas.com/tweet'
// 402 response (captured by monitor) · 1 payload · click to expand
[
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"tier": "standard",
"version": "2",
"merchant": "x402Atlas"
},
"payTo": "0xb708AF3BcE13517357E498f8fFd277dE93db9ef5",
"amount": "5000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"tier": "standard",
"feePayer": "Hc3sdEAsCGQcpgfivywog9uwtk8gUBUZgsxdME1EJy88",
"merchant": "x402Atlas"
},
"payTo": "ASt6xvRyQ7ntERsmcYVMdLqZvz1GEN8Fzexzq62tXrNQ",
"amount": "5000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://xmedia.use.x402atlas.com/tweet",
"mimeType": "application/json",
"description": "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.",
"serviceName": "Twitter (X) Video & Image Downloader — Tweet Media to Direct CDN URLs"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"url": "https://x.com/BarackObama/status/896523232098078720"
}
},
"output": {
"type": "json",
"example": {
"images": [
"https://pbs.twimg.com/media/AbC123.jpg"
],
"videos": [
{
"url": "https://video.twimg.com/amplify_video/1234567890/vid/avc1/1920x1080/abc.mp4?tag=28",
"thumbnail": "https://pbs.twimg.com/amplify_video_thumb/1234567890/img/xyz.jpg"
}
],
"post_url": "https://x.com/user/status/1234567890",
"queried_at": "2026-07-05T12:00:00Z",
"image_count": 1,
"video_count": 1
}
}
},
"tags": [
"twitter",
"x",
"video-downloader",
"twitter-video",
"tweet-media",
"image-downloader",
"social-media",
"mp4",
"cdn-links",
"download"
],
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"pattern": "^https?://(www\\.|mobile\\.)?(x\\.com|twitter\\.com)/.*/status/.*$",
"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"
}
}
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"queried_at",
"post_url",
"video_count",
"image_count",
"videos",
"images"
],
"properties": {
"images": {
"type": "array",
"items": {
"type": "string"
},
"description": "Direct CDN image URLs; always present, never null"
},
"videos": {
"type": "array",
"items": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "Direct CDN .mp4 URL"
},
"thumbnail": {
"type": "string",
"description": "Thumbnail image CDN URL"
}
}
},
"description": "Always present, never null; empty if the post has no video"
},
"post_url": {
"type": "string",
"description": "Echoed input tweet URL"
},
"queried_at": {
"type": "string",
"format": "date-time",
"description": "UTC timestamp when the upstream was queried"
},
"image_count": {
"type": "integer",
"minimum": 0,
"description": "Number of images found in the post"
},
"video_count": {
"type": "integer",
"minimum": 0,
"description": "Number of videos found in the post"
}
}
}
}
}
}
},
"category": "media-processing",
"routeTemplate": ":var1"
}
},
"x402Version": 2
}
] UPTIME
RECENT CHECKS
OVER TIME
All charts share the 7d window selected here. Every series is also served as JSON at /api/v1/services/x-twitter-media-downloader/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted).
Shared payout address (19 other services). These bars are the full shared address (operator-level), so do not sum them across the services that share it. Where a per-service figure is attributed, the assessment block and the ranking, it is the address total divided pro-quota by the 20 services sharing it: a declared convention, not an individually observed measure.
Shared payout address (19 other services). These bars are the full shared address (operator-level), so do not sum them across the services that share it. Where a per-service buyer count is attributed, the assessment block and the ranking, it is divided pro-quota by the 20 services sharing the address and can be fractional: a declared convention, not an individually observed measure.
COMPLIANCE
11/11 checks pass · grade A- 402 payload captured
- accepts[] array present
- payTo address recoverable
- payTo at accepts[0].payTo (conformant shape)
- payTo is a valid on-chain address
- atomic price declared
- atomic price in a sane range
- asset (token) address declared
- network resolves to CAIP-2
- payment scheme declared
- served over HTTPS
EMBED THIS BADGE
<a href="https://x402-list.com/services/x-twitter-media-downloader?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/x-twitter-media-downloader.svg" alt="X (Twitter) Media Downloader listed on x402-list" height="28"> </a>
[](https://x402-list.com/services/x-twitter-media-downloader?utm_source=badge&utm_medium=referral&utm_campaign=embed)
<a href="https://x402-list.com/services/x-twitter-media-downloader?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/x-twitter-media-downloader.svg?data=uptime" alt="X (Twitter) Media Downloader uptime on x402-list" height="28"> </a>