Run AI catalyst analysis on recent news
curl --request POST \
--url https://api.example.com/api/graph/v1/news/catalyst/{symbol}import requests
url = "https://api.example.com/api/graph/v1/news/catalyst/{symbol}"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/api/graph/v1/news/catalyst/{symbol}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/graph/v1/news/catalyst/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/graph/v1/news/catalyst/{symbol}"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/api/graph/v1/news/catalyst/{symbol}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/graph/v1/news/catalyst/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"symbol": "<string>",
"summary": "<string>",
"overall_news_bias": "<string>",
"bias_strength": 123,
"analyzed_at": "<string>",
"catalyst_articles": [
{
"headline": "<string>",
"sentiment_score": 123,
"impact": "<string>",
"catalyst_type": "<string>",
"reasoning": "<string>"
}
],
"strategy_implications": [
{
"strategy_name": "<string>",
"direction": "<string>",
"timeframe": "<string>",
"confidence": 123,
"rationale": "<string>",
"key_levels": [
"<string>"
]
}
],
"risk_considerations": [
"<string>"
],
"tokens_used": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}News
Run AI catalyst analysis on recent news
Run an AI equity analyst agent that identifies tradeable catalysts from recent news articles, cross-referencing with the symbol’s technical context (confluence scores, patterns, levels, options data).
Rate Limit
5 requests per minute (expensive LLM call).
Response
Returns classified catalyst articles with reasoning, strategy implications, risk considerations, and overall news bias.
POST
/
api
/
graph
/
v1
/
news
/
catalyst
/
{symbol}
Run AI catalyst analysis on recent news
curl --request POST \
--url https://api.example.com/api/graph/v1/news/catalyst/{symbol}import requests
url = "https://api.example.com/api/graph/v1/news/catalyst/{symbol}"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/api/graph/v1/news/catalyst/{symbol}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/graph/v1/news/catalyst/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/graph/v1/news/catalyst/{symbol}"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/api/graph/v1/news/catalyst/{symbol}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/graph/v1/news/catalyst/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"symbol": "<string>",
"summary": "<string>",
"overall_news_bias": "<string>",
"bias_strength": 123,
"analyzed_at": "<string>",
"catalyst_articles": [
{
"headline": "<string>",
"sentiment_score": 123,
"impact": "<string>",
"catalyst_type": "<string>",
"reasoning": "<string>"
}
],
"strategy_implications": [
{
"strategy_name": "<string>",
"direction": "<string>",
"timeframe": "<string>",
"confidence": 123,
"rationale": "<string>",
"key_levels": [
"<string>"
]
}
],
"risk_considerations": [
"<string>"
],
"tokens_used": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Path Parameters
Response
Successful Response
Full catalyst analysis result.
Stock ticker symbol
2-3 sentence executive summary
bullish, bearish, neutral, or mixed
Bias strength 0-100
ISO timestamp of analysis
Top articles with catalyst reasoning
Show child attributes
Show child attributes
1-3 strategy implications
Show child attributes
Show child attributes
2-3 risk factors
LLM tokens consumed