X Tweet Lookup ($0.015/call)
X Tweet Lookup ($0.015/call): Fetch one X (Twitter) post by numeric id: full text, author, ISO timestamp, like/retweet/reply/view counts, hashtags, expanded links and mentions as clean JSON. No X account or API key needed.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
25 msmedian answer time
$0.015listed price per call
$0.015price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://x402.botsmith.dev/x/tweet
| Category | Everything else |
|---|---|
| Provider host | x402.botsmith.dev |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.015 | 25 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"id": "1846987139428634858"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"id": {
"description": "Numeric tweet/post id",
"pattern": "^[0-9]{1,25}$",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"author": {
"additionalProperties": false,
"properties": {
"handle": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"handle",
"name",
"id"
],
"type": "object"
},
"createdAt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "ISO 8601"
},
"hashtags": {
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"type": "string"
},
"lang": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"links": {
"description": "Expanded outbound URLs",
"items": {
"type": "string"
},
"type": "array"
},
"mentions": {
"description": "Mentioned handles",
"items": {
"type": "string"
},
"type": "array"
},
"metrics": {
"additionalProperties": false,
"properties": {
"likes": {
"anyOf": [
{
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
{
"type": "null"
}
]
},
"quotes": {
"anyOf": [
{
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
{
"type": "null"
}
]
},
"replies": {
"anyOf": [
{
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
{
"type": "null"
}
]
},
"retweets": {
"anyOf": [
{
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
{
"type": "null"
}
]
},
"views": {
"anyOf": [
{
"maximum": 9007199254740991,
"minimum": -9007199254740991,
"type": "integer"
},
{
"type": "null"
}
]
}
},
"required": [
"likes",
"retweets",
"replies",
"quotes",
"views"
],
"type": "object"
},
"text": {
"type": "string"
},
"url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"id",
"url",
"text",
"createdAt",
"lang",
"author",
"metrics",
"hashtags",
"links",
"mentions"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],