检测多个钱包在指定时间窗内共同买入(获取)同一代币的聪明钱共振 / FOMO 信号。传入你追踪的聪明钱地址列表,返回被其中至少 N 个地址在窗口内共同买入的代币...
检测多个钱包在指定时间窗内共同买入(获取)同一代币的聪明钱共振 / FOMO 信号。传入你追踪的聪明钱地址列表,返回被其中至少 N 个地址在窗口内共同买入的代币,含买入地址与首次、最近买入时间。支持多链。Smart-money convergence FOMO signal: detect tokens acquired by multiple watched wallets within a time window. Pass your smart-money address list, get tokens bought by at least N of them with buyers and first or last buy time. Multi-chain on-chain aggregation.
Start with a quote-only recipe. Payment signing stays in your project.
const response = await fetch("https://api.x402node.dev/chain/smart-money-converge", {
method: "GET",
});
console.log(response.status);
console.log(Object.fromEntries(response.headers));
console.log((await response.text()).slice(0, 1000));
// A valid 402 is a quote, not a completed paid call.This sends no payment. Inspect the 402 response before adding a wallet-enabled client.
- Live 402 quote confirmed
GET returned a protocol-valid 402 quote (402). No payment was made.
- Origin reachable
HEAD https://api.x402node.dev/ returned 404.
- Observed in cdp-bazaar
The registry record was observed and retained with provenance.
- Observed in 402-index
Discovered through bazaar.
- Registry record checked
Registry health: healthy.
EVIDENCE
Each record has an exact-route quote outcome. Unresolved templates and potentially mutating methods are labeled instead of being invoked without provider-specific test input. A quote is still separate from a settled paid call.