Get a single tweet by URL
Get a single tweet by URL.
14000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-23
updated
Provider
api.socialfetch.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x02C2fCAfCe36B4AAdB39625866Bc6B1699d83043",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "14000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"url": "https://x.com/elonmusk/status/2044990537145753894"
},
"type": "http"
},
"output": {
"example": {
"data": {
"author": {
"metrics": {
"fastFollowersCount": 0,
"favourites": 227796,
"followers": 239969612,
"following": 1332,
"listedCount": 169024,
"mediaCount": 4489,
"tweets": 102641
},
"profile": {
"_truncated": true,
"accountCreatedAt": "2009-06-02T20:12:29.000Z",
"avatarUrl": "https://pbs.twimg.com/profile_images/2053244804520427520/m8mdWZCG_400x400.jpg",
"bannerUrl": "https://pbs.twimg.com/profile_banners/44196397/1774145451",
"bio": "https://t.co/dDtDyVssfm",
"blueVerified": true,
"displayName": "Elon Musk",
"handle": "elonmusk",
"platform": "twitter",
"platformUserId": "44196397",
"privateAccount": false,
"profileUrl": "https://x.com/elonmusk",
"verified": false
}
},
"lookupStatus": "found",
"tweet": {
"_truncated": true,
"conversationId": "2044683867630833961",
"createdAt": "2026-04-16T07:46:37.000Z",
"displayTextRange": [
0
],
"entities": {
"hashtags": [],
"symbols": [],
"urls": [],
"userMentions": []
},
"id": "2044683867630833961",
"isLongForm": false,
"isReply": false,
"language": "en",
"media": [],
"metrics": {
"bookmarks": 1371,
"favorites": 41905,
"quotes": 94,
"replies": 2809,
"retweets": 4590,
"views": 21703034
},
"text": "Look at the tiny cars in the foreground to get a sense of the vastness of the building",
"url": "https://x.com/elonmusk/status/2044683867630833961"
}
},
"meta": {
"creditsCharged": 1,
"requestId": "req_498736a9-e0e8-4adc-9100-a59e8bbcd452",
"version": "v1"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"trim": {
"description": "Optional: omit author profile and tweet `core` for a smaller response.",
"type": "boolean"
},
"url": {
"description": "Tweet permalink or identifier.",
"maxLength": 4096,
"minLength": 1,
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.socialfetch.dev/v1/twitter/tweets" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.socialfetch.dev/v1/twitter/tweets");
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://api.socialfetch.dev/v1/twitter/tweets")
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/3087.json, and this resource appears in /discovery/resources and /discovery/search.