Get Article
Attributes
API Request
Example Request with cURL
curl \
--request GET \
--url 'https://guavy.com/api/v1/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/v1/newsroom/get-article/a11c5fcb-c3b8-4b6d-9454-ea6df6d85e4f
{
"article_id": "6b52cbb0-ec8f-42e0-982e-54d782444bb1",
"body": "XRP-focused ETFs have emerged as an exception in the turbulent crypto market. Despite recent downturns, institutional demand for XRP remains strong, according to data from SosoValue. On June 29, th...",
"clout": 78.0,
"date": "2026-06-30",
"fud_fomo_bias": "fomo",
"fud_fomo_score": 2,
"impacted_coins": [
{
"asset": "XRP",
"confidence": 8,
"direction": "bullish",
"timeframe": "short"
},
{
"asset": "BTC (influenced by institutional interest in XRP)",
"confidence": 6,
"direction": "neutral",
"timeframe": "long"
}
],
"sentiment": 2.3,
"speculation_score": 4,
"symbols": [
"BTC",
"crypto",
"XRP",
"ETH"
],
"timestamp": 1782846565143,
"title": "Bitwise Dominates XRP ETF Inflows as Institutional Demand Remains Strong",
"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/v1/ping | 1 |
| GET /api/v1/instruments/list-symbols | 1 |
| GET /api/v1/instruments/search-instruments/:query | 2 |
| GET /api/v1/instruments/get-detail/:symbol | 5 |
| GET /api/v1/instruments/scorecard/:symbol | 10 |
| GET /api/v1/newsroom/get-market-summary | 3 |
| GET /api/v1/newsroom/get-article/:id | 3 |
| GET /api/v1/newsroom/get-recent-briefs/:symbol | 3 – 8 (scales with limit) |
| GET /api/v1/newsroom/search-briefs/:symbol | 3 – 8 (scales with limit) |
| GET /api/v1/newsroom/get-instrument-analysis/:symbol | 10 |
| GET /api/v1/trades/get-recent-buys | 3 |
| GET /api/v1/trades/get-recent-sells | 3 |
| GET /api/v1/trades/get-recommendations | 5 |
| GET /api/v1/trades/get-current-action/:symbol/:strategy | 5 |
| GET /api/v1/trades/get-trend-history/:symbol/:limit | 5 – 15 (scales with limit) |
| GET /api/v1/trades/get-backtest-history/:symbol/:strategy | 8 – 20 (scales with years) |
| GET /api/v1/trades/get-backtest-summary/:symbol/:strategy | 8 – 20 (scales with years) |
| GET /api/v1/sentiment/get-sentiment-history/:symbol | 3 – 12 (scales with limit) |
| GET /api/v1/technical-analysis/get-price-history/:symbol | 5 |
| GET /api/v1/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.