Get Article
Attributes
API Request
Example Request with cURL
curl \
--request GET \
--url 'https://guavy.com/api/v2/crypto/newsroom/get-article/<article_id>' \
--header 'Authorization: Bearer YOUR-GUAVY-ACCESS-TOKEN' \
--header 'Content-Type: application/json'
This request format works across all modern HTTP clients, including Python requests, JavaScript fetch, and other programming language libraries.
Example Response for /api/v2/crypto/newsroom/get-article/a11c5fcb-c3b8-4b6d-9454-ea6df6d85e4f
{
"article_id": "44f5b93e-9798-49d5-80ac-8980fb764e1e",
"body": "About $200 million in leveraged crypto positions were liquidated in 24 hours, mostly from short positions. This triggered sharp rallies in select altcoins while Bitcoin remained subdued. The...",
"clout": 72.0,
"date": "2026-06-30",
"fud_fomo_bias": "fud",
"fud_fomo_score": 4,
"impacted_coins": [
{
"asset": "BTC",
"confidence": 6,
"direction": "bearish",
"timeframe": "short"
},
{
"asset": "ETH",
"confidence": 5,
"direction": "neutral",
"timeframe": "short"
},
{
"asset": "SOL",
"confidence": 8,
"direction": "bullish",
"timeframe": "short"
},
{
"asset": "HYPR",
"confidence": 4,
"direction": "bullish",
"timeframe": "short"
},
{
"asset": "ZEC",
"confidence": 7,
"direction": "bullish",
"timeframe": "short"
},
{
"asset": "XLM",
"confidence": 5,
"direction": "bullish",
"timeframe": "short"
},
{
"asset": "DEXE",
"confidence": 9,
"direction": "bullish",
"timeframe": "short"
}
],
"sentiment": 2,
"speculation_score": 5,
"symbols": [
"BTC",
"HYPE",
"crypto",
"ETH",
"SOL"
],
"timestamp": 1782850387712,
"title": "$200M Crypto Liquidations Spark Sharp Altcoin Rallies Amid Volatility",
"tone": "neutral"
}
Response Object
Token Costs
Each API call consumes tokens from your monthly budget. Endpoints that return richer or deeper data cost more tokens. Historical endpoints scale with the amount of data requested.
| Endpoint | Token Cost |
|---|---|
| GET /api/v2/crypto/instruments/list-symbols | 1 |
| GET /api/v2/crypto/newsroom/get-recent-briefs/:symbol | 3 – 8 (scales with limit) |
| GET /api/v2/crypto/newsroom/search-briefs/:symbol | 3 – 8 (scales with limit) |
| GET /api/v2/crypto/newsroom/get-article/:id | 3 |
| GET /api/v2/crypto/sentiment/get-sentiment-history/:symbol | 3 – 12 (scales with limit) |
| GET /api/v2/crypto/technical-analysis/get-price-history/:symbol | 5 |
| GET /api/v2/crypto/technical-analysis/get-indicators/:symbol | 8 |
Account Limits
Each plan includes a monthly token budget: 3,000 for Sandbox, 250,000 for Quant, and 1,000,000 for Pro. Your monthly plan budget resets to the full amount on the 1st of each month — unused base tokens don't carry over. You can top up at any time with a one-time token pack; pack tokens never expire and any unused pack balance rolls forward. If you exceed your budget, the API returns a 403 until the next reset or until you purchase more tokens.
Connection Limits
The Guavy API has a limit of 10 simultaneous connections and a 120-second timeout per request. We recommend caching responses that don't change frequently to reduce token consumption and improve performance.