curl --request GET \
--url 'https://api.benzinga.com/api/v1/bulls_bears_say?token='import requests
url = "https://api.benzinga.com/api/v1/bulls_bears_say?token="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.benzinga.com/api/v1/bulls_bears_say?token=', 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.benzinga.com/api/v1/bulls_bears_say?token=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.benzinga.com/api/v1/bulls_bears_say?token="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.benzinga.com/api/v1/bulls_bears_say?token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v1/bulls_bears_say?token=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"bulls_say_bears_say": [
{
"bear_case": "The analysis highlights a 3.6% year-over-year decline in sales from China, which raises concerns about market performance in a key region. Additionally, while gross margins remain stable at approximately 47% year-over-year, increasing operating expenses pose a risk to profitability. Furthermore, potential sluggish growth in iPhone sales and the possibility of a decline in Apple's reputation could place downward pressure on the company's valuation, leading to apprehension among investors.",
"bull_case": "Apple's fourth-quarter sales increased 8% to $102.5 billion, aligning closely with estimates and supporting a projected total sales growth of 10% to 12% in the upcoming quarter, driven primarily by a robust performance in iPhone sales. The company also reported an operating income of $32.4 billion, reflecting a 10% year-over-year increase, and services revenue growth of 15%, contributing positively to gross margin dynamics. Additionally, with anticipated growth in the China region and strategic investments in AI and product development, Apple is positioned for sustainable long-term growth despite rising operational expenditures.",
"id": "6951d73e304f6ecd69d00189",
"securities": [
{
"cik": "0000320193",
"exchange": "NASDAQ Global Select Consolidated",
"isin": "US0378331005",
"name": "APPLE INC",
"symbol": "AAPL"
}
],
"ticker": "AAPL",
"updated": 1766971198
}
]
}
{
"ok": false,
"errors": [
{
"code": "auth_failed",
"id": "unauthorized",
"value": "Invalid or missing authentication token"
}
]
}
{
"ok": false,
"errors": [
{
"code": "no_data_found",
"id": "not_found",
"value": "No data found for the specified parameters"
}
]
}
{
"ok": false,
"errors": [
{
"code": "internal_server_error",
"id": "server_error",
"value": "An unexpected error occurred while processing your request"
}
]
}
Bulls VS Bears
Returns the latest bullish and bearish investment cases for a given stock ticker symbol. Bull cases present positive arguments for buying a stock, while bear cases present negative arguments against it.
curl --request GET \
--url 'https://api.benzinga.com/api/v1/bulls_bears_say?token='import requests
url = "https://api.benzinga.com/api/v1/bulls_bears_say?token="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.benzinga.com/api/v1/bulls_bears_say?token=', 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.benzinga.com/api/v1/bulls_bears_say?token=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.benzinga.com/api/v1/bulls_bears_say?token="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.benzinga.com/api/v1/bulls_bears_say?token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v1/bulls_bears_say?token=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"bulls_say_bears_say": [
{
"bear_case": "The analysis highlights a 3.6% year-over-year decline in sales from China, which raises concerns about market performance in a key region. Additionally, while gross margins remain stable at approximately 47% year-over-year, increasing operating expenses pose a risk to profitability. Furthermore, potential sluggish growth in iPhone sales and the possibility of a decline in Apple's reputation could place downward pressure on the company's valuation, leading to apprehension among investors.",
"bull_case": "Apple's fourth-quarter sales increased 8% to $102.5 billion, aligning closely with estimates and supporting a projected total sales growth of 10% to 12% in the upcoming quarter, driven primarily by a robust performance in iPhone sales. The company also reported an operating income of $32.4 billion, reflecting a 10% year-over-year increase, and services revenue growth of 15%, contributing positively to gross margin dynamics. Additionally, with anticipated growth in the China region and strategic investments in AI and product development, Apple is positioned for sustainable long-term growth despite rising operational expenditures.",
"id": "6951d73e304f6ecd69d00189",
"securities": [
{
"cik": "0000320193",
"exchange": "NASDAQ Global Select Consolidated",
"isin": "US0378331005",
"name": "APPLE INC",
"symbol": "AAPL"
}
],
"ticker": "AAPL",
"updated": 1766971198
}
]
}
{
"ok": false,
"errors": [
{
"code": "auth_failed",
"id": "unauthorized",
"value": "Invalid or missing authentication token"
}
]
}
{
"ok": false,
"errors": [
{
"code": "no_data_found",
"id": "not_found",
"value": "No data found for the specified parameters"
}
]
}
{
"ok": false,
"errors": [
{
"code": "internal_server_error",
"id": "server_error",
"value": "An unexpected error occurred while processing your request"
}
]
}
{
"bulls_say_bears_say": [
{
"bear_case": "The analysis highlights a 3.6% year-over-year decline in sales from China, which raises concerns about market performance in a key region. Additionally, while gross margins remain stable at approximately 47% year-over-year, increasing operating expenses pose a risk to profitability. Furthermore, potential sluggish growth in iPhone sales and the possibility of a decline in Apple's reputation could place downward pressure on the company's valuation, leading to apprehension among investors.",
"bull_case": "Apple's fourth-quarter sales increased 8% to $102.5 billion, aligning closely with estimates and supporting a projected total sales growth of 10% to 12% in the upcoming quarter, driven primarily by a robust performance in iPhone sales. The company also reported an operating income of $32.4 billion, reflecting a 10% year-over-year increase, and services revenue growth of 15%, contributing positively to gross margin dynamics. Additionally, with anticipated growth in the China region and strategic investments in AI and product development, Apple is positioned for sustainable long-term growth despite rising operational expenditures.",
"id": "6951d73e304f6ecd69d00189",
"securities": [
{
"cik": "0000320193",
"exchange": "NASDAQ Global Select Consolidated",
"isin": "US0378331005",
"name": "APPLE INC",
"symbol": "AAPL"
}
],
"ticker": "AAPL",
"updated": 1766971198
}
]
}
{
"ok": false,
"errors": [
{
"code": "auth_failed",
"id": "unauthorized",
"value": "Invalid or missing authentication token"
}
]
}
{
"ok": false,
"errors": [
{
"code": "no_data_found",
"id": "not_found",
"value": "No data found for the specified parameters"
}
]
}
{
"ok": false,
"errors": [
{
"code": "internal_server_error",
"id": "server_error",
"value": "An unexpected error occurred while processing your request"
}
]
}
Authorizations
Query Parameters
Stock ticker symbol to query for bull/bear cases
Page offset. For optimization, performance and technical reasons, page offsets are limited from 0 - 100000. Limit the query results by other parameters such as date. Default is 0
Number of results to be returned. Limit 200
x <= 200Records last Updated Unix timestamp (UTC). This will force the sort order to be Greater Than or Equal to the timestamp indicated
Response
An array of bull and bear cases for the requested ticker symbol
API response containing an array of bulls say bears say records
Show child attributes
Show child attributes
Was this page helpful?