Retrieve recent public X/Twitter posts from one or more named public account handles for m
Retrieve recent public X/Twitter posts from one or more named public account handles for monitoring, comparison, OSINT, social intelligence, and source-linked summaries. Returns an asynchronous task with scoped polling access; it does not search X-wide keywords, access private accounts, or control an X account.
10000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-17
updated
Provider
xcatcher.top · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xa153f410C700939cfdf9F7F3e7b8d954bE9E009d",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"mode": "normal",
"users": [
"openai"
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"access_expires_at": "2026-08-15T00:00:00",
"poll_after_seconds": 5,
"success": true,
"task": {
"results_url": null,
"status": "queued",
"status_url": "/api/v1/x402/tasks/12345",
"task_id": 12345
},
"task_token": "xtask_example_scoped_token",
"x402_version": 2
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"mode": {
"description": "normal is a recent snapshot; deep retrieves more posts per handle.",
"enum": [
"normal",
"deep"
],
"type": "string"
},
"users": {
"description": "X account handles or profile URLs to crawl.",
"items": {
"type": "string"
},
"maxItems": 500,
"minItems": 1,
"type": "array"
}
},
"required": [
"users",
"mode"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"access_expires_at": {
"type": "string"
},
"poll_after_seconds": {
"minimum": 1,
"type": "integer"
},
"success": {
"const": true,
"type": "boolean"
},
"task": {
"properties": {
"results_url": {
"type": [
"string",
"null"
]
},
"status": {
"type": "string"
},
"status_url": {
"type": "string"
},
"task_id": {
"type": "integer"
}
},
"required": [
"task_id",
"status",
"status_url"
],
"type": "object"
},
"task_token": {
"description": "Task-scoped bearer credential. Keep it private and send it only to the returned Xcatcher status and results URLs.",
"type": "string"
},
"x402_version": {
"const": 2,
"type": "integer"
}
},
"required": [
"success",
"x402_version",
"task",
"task_token",
"access_expires_at",
"poll_after_seconds"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://xcatcher.top/api/v1/x402/crawl" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://xcatcher.top/api/v1/x402/crawl");
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://xcatcher.top/api/v1/x402/crawl")
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/3599.json, and this resource appears in /discovery/resources and /discovery/search.