Get Recent Briefs
Attributes
API Request
Example Request with cURL
curl \
--request GET \
--url 'https://guavy.com/api/v2/commodities/newsroom/get-recent-briefs/<symbol>?limit=<integer>' \
--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/commodities/newsroom/get-recent-briefs/Oil?limit=2
{
"briefs": [
{
"article_id": "07dcd3dc-2214-4550-a490-5b428798761d",
"body": "Gold prices remain steady around $4,000 an ounce as traders await clues on inflation from the Middle...",
"clout": 82.0,
"date": "2026-07-21",
"fud_fomo_bias": "fud",
"fud_fomo_score": 3,
"impacted_coins": [
{
"asset": "BTC",
"confidence": 7,
"direction": "bearish",
"timeframe": "long"
},
{
"asset": "ETH",
"confidence": 6,
"direction": "bearish",
"timeframe": "long"
}
],
"sentiment": 1.3,
"speculation_score": 4,
"symbols": [
"Oil",
"Gold"
],
"timestamp": 1784597834094,
"title": "Gold Holds Steady Amid Middle East Conflict Uncertainty",
"tone": "formal"
},
{
"article_id": "3709527f-8f92-4c47-b5ea-8e65685aa788",
"body": "The Saudi-led coalition in Yemen has pledged to protect ships from the Houthis after they threatened...",
"clout": 100.0,
"date": "2026-07-21",
"fud_fomo_bias": "fud",
"fud_fomo_score": 2,
"impacted_coins": [
{
"asset": "oil futures (e.g. CL=F)",
"confidence": 9,
"direction": "bearish",
"timeframe": "short"
},
{
"asset": "Saudi Aramco (ARAMCO)",
"confidence": 8,
"direction": "neutral",
"timeframe": "long"
},
{
"asset": "IRGC-linked companies or assets",
"confidence": 7,
"direction": "bearish",
"timeframe": "short"
}
],
"sentiment": -2,
"speculation_score": 4,
"symbols": [
"Oil"
],
"timestamp": 1784597182120,
"title": "Houthis Threaten Maritime Blockade as Saudi-Led Coalition St...",
"tone": "formal"
}
]
}
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/commodities/instruments/list-symbols | 1 |
| GET /api/v2/commodities/newsroom/get-recent-briefs/:symbol | 3 – 8 (scales with limit) |
| GET /api/v2/commodities/newsroom/search-briefs/:symbol | 3 – 8 (scales with limit) |
| GET /api/v2/commodities/newsroom/get-article/:id | 3 |
| GET /api/v2/commodities/sentiment/get-sentiment-history/:symbol | 3 – 12 (scales with limit) |
| GET /api/v2/commodities/technical-analysis/get-price-history/:symbol | 5 |
| GET /api/v2/commodities/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 401 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.