Search Briefs
Attributes
API Request
Example Request with cURL
curl \
--request GET \
--url 'https://guavy.com/api/v2/forex/newsroom/search-briefs/<symbol>?keywords=<string>&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/forex/newsroom/search-briefs/EUR?keywords=rate+decision&limit=5
{
"briefs": [
{
"article_id": "f325684d-46e5-4e48-bbe7-5a35c6a6e1bb",
"body": "ECB President Christine Lagarde will replace Vice President Vujcic at next week's Ecofin meeting in ...",
"clout": 100.0,
"date": "2026-07-03",
"fud_fomo_bias": "neutral",
"fud_fomo_score": 0,
"impacted_coins": [
{
"asset": "EUR",
"confidence": 8,
"direction": "neutral",
"timeframe": "short"
},
{
"asset": "Eurozone bonds (e.g. EZ2Y)",
"confidence": 7,
"direction": "bullish",
"timeframe": "short"
}
],
"sentiment": 1,
"speculation_score": 0,
"symbols": [
"EUR"
],
"timestamp": 1783108009824,
"title": "Lagarde to Replace Vujcic at EU Finance Ministers Meeting",
"tone": "neutral"
},
{
"article_id": "0c31f16d-98b0-4e7d-8ad1-72c7c6939be4",
"body": "The European Central Bank's latest bank interest rate statistics show a slight increase in borrowing...",
"clout": 95.0,
"date": "2026-07-03",
"fud_fomo_bias": "neutral",
"fud_fomo_score": 0,
"impacted_coins": [
{
"asset": "EURUSD",
"confidence": 8,
"direction": "neutral",
"timeframe": "short"
},
{
"asset": "EUROSTOXX50",
"confidence": 6,
"direction": "bullish",
"timeframe": "long"
}
],
"sentiment": 2,
"speculation_score": 4,
"symbols": [
"EUR"
],
"timestamp": 1783107970049,
"title": "Euro Area Bank Interest Rates Inch Up in May",
"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/forex/instruments/list-symbols | 1 |
| GET /api/v2/forex/newsroom/get-recent-briefs/:symbol | 3 – 8 (scales with limit) |
| GET /api/v2/forex/newsroom/search-briefs/:symbol | 3 – 8 (scales with limit) |
| GET /api/v2/forex/newsroom/get-article/:id | 3 |
| GET /api/v2/forex/sentiment/get-sentiment-history/:symbol | 3 – 12 (scales with limit) |
| GET /api/v2/forex/technical-analysis/get-price-history/:symbol | 5 |
| GET /api/v2/forex/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.