Agent toolkit

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.068 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`, { method: "POST", body: JSON.stringify({ query: 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/news?token=${token}`);
  const odds = await x402Fetch(`https://prediction-markets.api.klymax402.com/api/odds`, { method: "POST", body: JSON.stringify({ query: token }) });
  return { sentiment_score: sentiment.score, news_count: news.items.length, market_odds: odds.summary };
}
← All bundles