Speculation Watch

Ranks watchlist coins by speculation score to surface the most hype-driven names of the week.

Analyze 1 Tool 100 Tokens / Run Python · Node.js

What This Recipe Solves

Hype-driven coins move fast and crash faster. This script ranks your watchlist by Guavy's speculation score so you know which names are narrative-heavy before you size a position.

Copy, Run, Ship

Drop this script into your project and run it locally or on a cron. Set GUAVY_KEY in your environment, swap the symbols, and go.

Python
# speculation_watch.py
import os, requests

API       = "https://data.guavy.com/api/v1"
H         = {"Authorization": f"Bearer {os.environ['GUAVY_KEY']}"}
WATCHLIST = ["BTC", "ETH", "SOL", "AVAX", "LINK",
             "DOGE", "XRP", "ADA", "DOT", "MATIC"]

rows = []
for s in WATCHLIST:
    a = requests.get(
        f"{API}/newsroom/get-instrument-analysis/{s}",
        headers=H
    ).json()
    rows.append((s, a.get("speculation_score", 0), a.get("dominant_tone", "")))

rows.sort(key=lambda r: r[1], reverse=True)
print(f"{'Symbol':<8} {'Speculation':>12} {'Tone'}")
for sym, score, tone in rows:
    print(f"{sym:<8} {score:>12.2f} {tone}")

1 Tool, One Script

This script calls 1 endpoint from the Guavy REST API. Every data point maps back to the endpoint it came from.

Run This Recipe in Under 2 Minutes

Grab a free API key, set it as an env var, and run the script. Free sandbox forever.

Disclaimer: Guavy is a data and market intelligence provider, not an investment advisor. The information, signals, and market analysis provided by the Guavy mobile application, API, and related services are for informational purposes only and are not intended as financial advice, investment recommendations, or an endorsement of any particular trading strategy. Cryptocurrency trading is highly volatile, carries significant risk, and may not be suitable for all investors. Past performance is not indicative of future results. Users should consult with a qualified financial professional before making any investment decisions. Guavy makes no guarantee of trading profits or financial returns.

Real-Time Market Intelligence for Apps, Funds & Agents

Location

729 55 Ave SW
Calgary AB T2V 0G4
Canada

Get Your Daily Crypto Market Update

Receive the most important news, market sentiment, and prices for leading instruments. Delivered straight to your inbox.

No spam, unsubscribe anytime

© 2025 Guavy Inc