Skip to content

Weekly Sentiment Report

A weekly CSV or markdown report showing the 7-day sentiment trajectory for a user-supplied list of coins.

Inform 1 tool 15 Tokens / Run Python · Node.js

What this recipe solves

Tracking sentiment week-over-week across multiple coins requires manual exports and spreadsheet work. This script automates the pull and formats the output for sharing.

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
# weekly_sentiment.py
import os, requests, csv, sys

API  = "https://guavy.com/api/v1"
H    = {"Authorization": f"Bearer {os.environ['GUAVY_KEY']}"}
SYMBOLS = ["BTC", "ETH", "SOL", "AVAX", "LINK"]

writer = csv.writer(sys.stdout)
writer.writerow(["symbol", "date", "positive", "negative", "neutral"])

for s in SYMBOLS:
    data = requests.get(
        f"{API}/sentiment/get-sentiment-history/{s}",
        headers=H,
        params={"limit": 7}
    ).json()
    for d in data["sentiment"]:
        writer.writerow([s, d["date"], d["positive"], d["negative"], d["neutral"]])

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 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. Trading in volatile markets, including cryptocurrency, 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 sentiment intelligence for apps, funds & agents

Location

729 55 Ave SW
Calgary AB T2V 0G4
Canada

© 2026 Guavy Inc