Guavy Logo GUAVY
Newsroom Get Article
GET
·
/api/v1/newsroom/get-article

Get Article

Fetch a news article using its unique identifier (ID). IDs are returned in the 'Get Recent Briefs' route.

Attributes

article_id
string
Required
The unique identifier of the article to retrieve.

API Request

Example Request with cURL

curl \
--request GET \
--url     'https://data.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": "e6ab6fbb-ccca-4583-818a-3bcd1324956f",
  "body": "Michael Saylor's company Strategy has been on a remarkable journey since its inception in 2020. The firm has deployed over $54 billion into Bitcoin, making it the largest corporate holder of the as...",
  "clout": 82.0,
  "date": "2026-02-23",
  "fud_fomo_bias": "fomo",
  "fud_fomo_score": 3,
  "impacted_coins": [
    {
      "asset": "BTC",
      "confidence": 9,
      "direction": "bullish",
      "timeframe": "long"
    }
  ],
  "sentiment": 2,
  "speculation_score": 4,
  "symbols": [
    "BTC"
  ],
  "timestamp": 1771873452268,
  "title": "Strategy's $54 Billion Bitcoin Bet: A Six-Year DCA Odyssey",
  "tone": "formal"
}

Response Object

article_id
string
The unique identifier of the article.
body
string
The text body of the article. This may contain HTML tags.
clout
integer
A score, between 0 and 100, of the publisher's audience, credibility, and trust.
date
string
Date of publication.
fud_fomo_score
integer
Intensity of emotional bias in the article's language. Scores range from 0 (neutral/factual) to 10 (pure manipulation with almost no factual content).
fud_fomo_bias
string
Direction of emotional bias: 'neutral' (balanced/factual), 'fud' (fear, uncertainty, doubt), or 'fomo' (fear of missing out, hype).
impacted_coins
array[object]
Directional price outlooks for coins mentioned in the article. Each entry includes the following keys:
asset
string
Ticker symbol of the referenced coin (e.g., BTC, ETH).
confidence
integer
A confidence score from 0 (low) to 10 (high).
direction
string
Predicted direction: bullish, bearish, or neutral.
timeframe
string
Duration of the outlook, either short, long, or short to long.
sentiment
integer
A sentiment score for the article between -5 (very negative) and +5 (very positive).
speculation_score
integer
Quantifies how much an article relies on opinion, prediction, or unverified claims versus confirmed, factual reporting. Scores range from 0 (entirely factual, verified information) to 10 (pure speculation with no factual grounding).
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 article.
tone
string
The tone of the article.

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}

© 2026 Guavy Inc. All rights reserved.