Guavy Logo GUAVY
Newsroom Get Recent Briefs
GET
·
/api/v1/newsroom/get-recent-briefs

Get Recent Briefs

Fetch news briefs for a specific instrument using its symbol.

Attributes

symbol
string
Required
The symbol to fetch news for.
limit
integer
The maximum number of news briefs to return. Defaults to 100.

API Request

Example Request with cURL

curl \
--request GET \
--url     'https://data.guavy.com/api/v1/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/v1/newsroom/get-recent-briefs/btc?limit=2

{
  "briefs": [
    {
      "article_id": "8a3b40b8-8703-4283-95a8-b9bcad4f0577",
      "body": "Bitnomial has secured crucial approval from the US Commodity Futures Trading Commission (CFTC) to la...",
      "date": "2025-12-13",
      "sentiment": 3.0,
      "symbols": [
        "BTC",
        "crypto"
      ],
      "timestamp": 1765628966223,
      "title": "Bitnomial Secures CFTC Approval for Regulated Prediction Mar...",
      "tone": "neutral"
    },
    {
      "article_id": "ecc6a74d-3209-4a33-8e17-d8984091d496",
      "body": "Banxico, Mexico's central bank, has issued a warning about the systemic risks associated with stable...",
      "date": "2025-12-13",
      "sentiment": -2.0,
      "symbols": [
        "crypto",
        "BTC",
        "HIVE"
      ],
      "timestamp": 1765628906807,
      "title": "LATAM Crypto News: Banxico Warns of Stablecoin Risks, HIVECO...",
      "tone": "formal"
    }
  ]
}

Response Object

briefs
array[object]
The array of news brief objects, with the following keys:
article_id
string
The unique identifier of the associated article.
body
string
The text body of the brief. This may contain HTML tags.
date
string
Date of publication.
sentiment
integer
A sentiment score for the article between -5 (very negative) and +5 (very positive).
symbols
array[string]
The list of symbols mentioned in the article.
timestamp
integer
UNIX timestamp (in milliseconds) of publication.
title
string
The title of the brief.
tone
string
The tone of the brief

API Limits

The Guavy API has a limit of 10 simultaneous connections. You'll receive a 429 error if you reach the limit. At exceptionally high volumes, you may receive an HTTP 429 or 403 without a JSON body.

We recommend that you cache frequently accessed values that do not change often in your application's data store. This will prevent your application from bumping up against the throttling limitations and will likely provide faster access to that data.

Account Limits

Your Guavy account will typically have a licensed limit of at least 100,000 API calls per month. In addition, there is a limit of 10,000 API calls per day. If you reach these limits, you will receive a 429 error.

Connection Timeouts

The Guavy API has a 120-second timeout on API calls. You may see this type of timeout after you've made a network socket connection and are already sending and receiving data. Response times are dependent on the complexity of your request and the general load across Guavy. Some endpoints in the Guavy API return values that are large and slow to calculate.

Was this helpful?
Feedback option #{picture.id}
Feedback option #{picture.id}
Feedback option #{picture.id}
Feedback option #{picture.id}

© 2025 Guavy Inc. All rights reserved.