Crypto News & Sentiment Toolkit

Track market vibes across Twitter, prediction markets, and on-chain signals.

Use case

Feed a token symbol or wallet. Get aggregated Twitter sentiment, prediction-market odds, fresh Solana launches in the same theme, and trust scores — for alpha-hunting agents or risk dashboards.

APIs in this bundle (6)

Cycle cost ≈ $0.055 USDC
Network Base L2
Settle <2s
Signup none

Code example

import { x402Fetch } from "x402-agent-tools";

async function readMarketVibe(token: string) {
  const tweets = await x402Fetch(`https://twitter-scraper.api.klymax402.com/api/search?q=$${token}`);
  const sentiment = await x402Fetch(`https://sentiment-analyzer.api.klymax402.com/api/analyze`, { method: "POST", body: JSON.stringify({ text: tweets.combined }) });
  const news = await x402Fetch(`https://crypto-news.api.klymax402.com/api/feed?symbol=${token}`);
  const odds = await x402Fetch(`https://prediction-markets.api.klymax402.com/api/odds?keyword=${token}`);
  return { sentiment_score: sentiment.score, news_count: news.items.length, market_odds: odds.summary };
}
Install npm package Full API catalog (llms.txt) Live activity