Monitor X/Twitter for changes - pass a search query and (optionally) a cursor from your la
Monitor X/Twitter for changes - pass a search query and (optionally) a cursor from your last check, get back ONLY what's new since then, plus an AI change summary. Cursor-based so an agent never re-reads the same tweets. Brand monitoring, keyword alerts, competitor tracking. ?query=<advanced search>&since=<ISO timestamp or tweet id>. First call (no since) returns a baseline of the latest 20 + a cursor to pass next time.
50000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-15
updated
Provider
clink-lithium-vault.fly.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xB1eF5415E9D3695e16977B8be422AB7512F788C0",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 90
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"query": "lithium min_faves:20"
},
"type": "http"
},
"output": {
"example": {
"change_summary": {
"sentiment": "neutral",
"summary": "..."
},
"cursor": {
"newest_id": "1878000000000000000"
},
"new_count": 3,
"truncated": false
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"query": {
"type": "string"
},
"since": {
"description": "ISO timestamp or numeric tweet id from a prior call's cursor; omit for a baseline",
"type": "string"
}
},
"required": [
"query"
],
"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"
}
}
}Use it
curl
curl "https://clink-lithium-vault.fly.dev/x/watch" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://clink-lithium-vault.fly.dev/x/watch");
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://clink-lithium-vault.fly.dev/x/watch")
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/5848.json, and this resource appears in /discovery/resources and /discovery/search.