| name | checkr |
| description | Access real-time X/Twitter attention intelligence for Base chain tokens via the checkr API.
Use when you need to know what is trending on CT, which tokens are spiking in social attention,
get attention/price divergence signals, or fetch narrative summaries for specific Base tokens.
Triggers: "what's trending on Base", "check attention for $TOKEN", "what's spiking right now",
"social signal for X", any token research needing CT attention data.
Payments via x402 โ USDC on Base, no API key or account needed.
|
checkr
Real-time X/Twitter attention intelligence for Base chain tokens.
Base URL: https://api.checkr.social
Docs: https://api.checkr.social/docs
Payment: x402 โ USDC on Base mainnet, pay-per-call, no account needed.
Endpoints
| Endpoint | Price | What it returns |
|---|
GET /v1/leaderboard | $0.02 | Top Base tokens ranked by social attention share |
GET /v1/spikes | $0.05 | Tokens currently velocity-spiking (the radar sweep) |
GET /v1/token/{symbol} | $0.50 | Deep dive: ATT deltas, price, divergence, narrative |
GET /v1/bankr | $0.02 | Attention leaderboard for the bankr agent ecosystem |
Full response schemas and field definitions: https://api.checkr.social/docs
How to Call (x402)
x402 is pay-per-call. No API key or account. Wallet + USDC on Base is all you need.
Python:
from x402.client import x402_client
client = x402_client(wallet=YOUR_WALLET)
spikes = client.get("https://api.checkr.social/v1/spikes").json()
leaderboard = client.get("https://api.checkr.social/v1/leaderboard").json()
token = client.get("https://api.checkr.social/v1/token/BNKR").json()
TypeScript:
import { withPaymentInterceptor } from "x402-axios";
import axios from "axios";
const client = withPaymentInterceptor(axios.create(), walletClient);
const { data } = await client.get("https://api.checkr.social/v1/spikes");
Payment is handled automatically by the x402 client โ it intercepts the 402, signs and sends payment, then retries with the receipt.
Practical Flow
Use spikes as your radar. Drill into token for context.
spikes = client.get("https://api.checkr.social/v1/spikes").json()
top = spikes["spikes"][0]["symbol"]
detail = client.get(f"https://api.checkr.social/v1/token/{top}").json()
Key Fields
On every response:
data_age_minutes โ how fresh the data is. Use before acting.
On spikes:
velocity โ momentum multiplier vs baseline. 3.0+ = meaningful spike.
divergence โ true = attention up, price flat/down. The alpha pattern.
hawkes.viral_class โ BUILDING / SUSTAINED / FADING. Is this self-reinforcing?
rotating_from โ tokens losing attention as this one gains.
narrative_summary โ AI-generated 180-char brief. null if signal below confidence threshold.
On token deep dive:
ATT_delta_1h / ATT_delta_4h โ attention share movement over time.
spike_history.hit_rate โ % of past spikes with confirmed price follow-through.
narrative.type โ infrastructure / ecosystem / fud_defense / meme / launch_hype.
Query Params
GET /v1/leaderboard?limit=10&sort_by=ATT_pct&min_mentions=5
GET /v1/spikes?min_velocity=3.0&min_mentions=10&divergence_only=false
Requirements
- USDC on Base mainnet
- Python:
pip install x402
- TypeScript:
npm install x402-axios
- Base gas for payment (~$0.01)