Skip to main content
GET
/
v1
/
enterprise
/
tickers
/
{ticker}
/
analysis
cURL
curl --request GET \
  --url https://api.byteai.me/v1/enterprise/tickers/{ticker}/analysis \
  --header 'Authorization: Bearer <token>'
{
"analysis": {
"ticker": "MSFT",
"id": "e5c6cde2-5137-4dfe-96a1-50e5f37e9968",
"justification": "The stock is underbought because the RSI is below 30 and the MACD is above the signal line.",
"rsi_analysis": "RSI at 47.2133 (-5.6% vs baseline): Leaning Underbought.",
"macd_analysis": "The MACD is the same as the Signal Line (difference < 0.1), leaning slightly bullish.",
"bb_analysis": "The stock price is almost the same as the upper Bollinger Band (difference < 0.5). Note: The Bollinger bandwidth is only 0.86, which is quite narrow.",
"created_at": "2025-05-23T19:22:59.437Z",
"model": "gpt-4.1-mini",
"news_analysis": {
"summary": "The overall sentiment for Microsoft (MSFT) is moderately positive with no significant negative headlines. Most articles reflect neutral to somewhat-bullish views, particularly highlighting Microsoft's competitive position in the evolving software industry and anticipation of strong earnings. There is no clear indication of economic downturn impacting MSFT specifically. Broader market themes include cautious investor sentiment around AI stocks with some volatility noted but Microsoft is not directly implicated in negative trends. Geopolitical and regulatory news, like the NRC overhaul and tariff discussions, appear unrelated to Microsoft’s core business impacts at this time.",
"relevance": "The somewhat-bullish sentiment around Microsoft's industry competitiveness and upcoming earnings suggests potential positive market sentiment for MSFT shares. The absence of major negative news or direct economic headwinds specific to Microsoft implies stability and possible growth prospects, making MSFT an attractive consideration in a cautiously optimistic tech sector environment."
}
}
}
“Fresh” analysis will be computed for the ticker 100% of the time. The analysis is computed based off of 15-minute delayed financial data until further notice. “Cached” analysis will check the cache for the ticker and return the cached analysis if it exists. If the cached analysis does not exist, it will compute the analysis and then cache it. If the ticker is not in the cache, it will compute the analysis and then cache it, you will be charged with the cached rate. Expect fresh and cache-miss analyses to take 20-30 seconds to complete. Cache-hit analyses will take 3-5 seconds to complete.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

ticker
string
required

The ticker to get analysis for

Example:

"MSFT"

Query Parameters

model
enum<string>

The model to use for analysis

Available options:
o4-mini-cached,
o4-mini-fresh,
gpt-5-cached,
gpt-5-fresh,
gpt-5-nano-cached,
gpt-5-nano-fresh
Example:

"gpt-4.1-mini-fresh"

Response

Analysis response

analysis
object
required