Discover/Benzinga API
live

Benzinga APIbenzinga.com

Access Benzinga stock quotes, sentiment-tagged news, analyst ratings, and company fundamentals via 4 structured endpoints. Delayed pricing, P/E, sector data, and more.

Endpoint health
verified 4d ago
get_news
get_quote
get_analyst_ratings
get_fundamentals
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Benzinga API?

The Benzinga API exposes 4 endpoints covering delayed stock quotes, financial news with sentiment labels, analyst ratings, and company fundamentals. The get_news endpoint returns full article text (up to 5,000 characters) along with a bullish/bearish/neutral sentiment label for each piece. Other endpoints surface per-symbol data including P/E ratios, analyst price target changes, sector classification, and IPO date.

Try it
Stock ticker symbol (e.g. AAPL, TSLA, MSFT)
api.parse.bot/scraper/69131ce9-ff80-492b-816c-18aad4a40b64/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/69131ce9-ff80-492b-816c-18aad4a40b64/get_quote?symbol=AAPL' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace benzinga-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Benzinga Stock Data API — bounded, re-runnable walkthrough."""
from parse_apis.benzinga_stock_data_api import Benzinga, Period, SymbolNotFound

client = Benzinga()

# Fetch a stock quote — typed field access on the result.
stock = client.stocks.get(symbol="AAPL")
print(f"{stock.name} ({stock.symbol}): ${stock.last_trade_price}, PE={stock.pe}")

# Drill into fundamentals for the same stock.
fundamentals = stock.fundamentals(period=Period._3M)
print(f"Sector: {fundamentals.asset_classification.ms_sector_name}, Employees: {fundamentals.company_profile.total_employees}")

# Browse recent news articles (capped at 3 total items).
for article in stock.news.list(limit=3):
    print(f"[{article.sentiment}] {article.title} — {article.published_date}")

# Browse analyst ratings (capped at 5 total items).
for rating in stock.ratings.list(limit=5):
    print(f"{rating.date}: {rating.analyst_firm} — {rating.rating_change}, target {rating.price_target_change}")

# Typed error handling: catch SymbolNotFound for an invalid ticker.
try:
    bad = client.stocks.get(symbol="ZZZZZ")
    print(bad.name)
except SymbolNotFound as exc:
    print(f"Symbol not found: {exc.symbol}")

print("Exercised: stocks.get / fundamentals / news.list / ratings.list / SymbolNotFound")
All endpoints · 4 totalmissing one? ·

Retrieve real-time delayed quote data for a single stock symbol. Returns pricing (open, high, low, last trade), volume, market cap, P/E ratio, dividend yield, and 52-week range. The quote reflects the most recent trading session data with a short delay.

Input
ParamTypeDescription
symbolrequiredstringStock ticker symbol (e.g. AAPL, TSLA, MSFT)
Response
{
  "type": "object",
  "fields": {
    "pe": "number - P/E ratio",
    "low": "number - day low",
    "high": "number - day high",
    "name": "string - company short name",
    "open": "number - opening price",
    "change": "number - price change from previous close",
    "symbol": "string - ticker symbol",
    "volume": "integer - trading volume",
    "exchange": "string - exchange code (e.g. XNAS)",
    "marketCap": "number - market capitalization",
    "changePercent": "number - percentage change",
    "dividendYield": "number - dividend yield percentage",
    "lastTradePrice": "number - last trade price",
    "fiftyTwoWeekLow": "number - 52-week low price",
    "fiftyTwoWeekHigh": "number - 52-week high price"
  },
  "sample": {
    "data": {
      "pe": 35.175545,
      "low": 287.38,
      "high": 294.75,
      "name": "Apple",
      "open": 290.74,
      "change": -0.69,
      "symbol": "AAPL",
      "volume": 52793266,
      "exchange": "XNAS",
      "marketCap": 4270596814600,
      "changePercent": -0.24,
      "dividendYield": 0.37,
      "lastTradePrice": 290.89,
      "fiftyTwoWeekLow": 195.07,
      "fiftyTwoWeekHigh": 317.4
    },
    "status": "success"
  }
}

About the Benzinga API

Stock Quotes and Fundamentals

The get_quote endpoint accepts a single symbol parameter and returns a snapshot of delayed trading data: open, high, low, last price, volume, market cap, P/E ratio, dividend yield, and 52-week range. The get_fundamentals endpoint goes deeper, returning nested objects for company profile (shortName, longDescription, totalEmployees, homepage), share class details (ipoDate, exchangeId, currencyId), asset classification (msSectorName, msIndustryName), and market metrics (sharesOutstanding, marketCap). An optional period parameter accepts 3M to scope the data window.

News with Sentiment

get_news fetches recent Benzinga articles for a given ticker, ordered by recency. Each item in the returned array includes title, url, author, published_date, full_text (up to 5,000 characters), and a sentiment field derived from keyword frequency analysis — one of bullish, bearish, or neutral. The optional limit parameter controls how many articles are returned, which is useful when you only need the most recent few pieces for a given symbol.

Analyst Ratings

get_analyst_ratings returns an array of rating events sorted by date descending. Each item includes analyst_firm, rating_change, price_target_change, upside_downside, and previous_current_rating. This lets you track how coverage of a stock has evolved across multiple firms over time — for example, spotting a cluster of upgrades or target increases following an earnings release.

Reliability & maintenanceVerified

The Benzinga API is a managed, monitored endpoint for benzinga.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when benzinga.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official benzinga.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor intraday price movement and volume for a watchlist of tickers using get_quote fields like high, low, and change.
  • Build a sentiment dashboard that aggregates bullish/bearish/neutral scores from get_news across a portfolio of symbols.
  • Alert users when analyst firms issue upgrades or raise price targets by polling get_analyst_ratings for rating_change and price_target_change fields.
  • Populate a stock screener with sector and industry data from assetClassification fields returned by get_fundamentals.
  • Display company overview cards using companyProfile fields such as longDescription, totalEmployees, and homepage.
  • Track IPO history by reading ipoDate from the shareClass object in get_fundamentals.
  • Feed full article text from get_news into an LLM pipeline for deeper per-ticker summarization or topic extraction.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Benzinga have an official developer API?+
Yes. Benzinga offers a commercial data API at https://www.benzinga.com/apis/data-solutions. It is geared toward institutional and enterprise clients, with separate licensing for news, signals, and market data feeds.
What does the sentiment field in get_news actually represent?+
The sentiment field is a derived label — bullish, bearish, or neutral — computed from keyword frequency within the article text. It is not a score Benzinga publishes directly; it is assigned per article based on the content returned. No numeric confidence score is included in the current response shape.
Does get_quote return real-time prices or delayed data?+
The quote reflects delayed data from the most recent trading session, not a live real-time tick. The symbol, open, high, low, change, volume, and marketCap fields are all present, but there is no timestamp field in the response indicating the exact delay window. Do not rely on this endpoint for sub-second trading applications.
Does the API cover options data, earnings estimates, or historical price series?+
Not currently. The API covers delayed quotes, recent news with sentiment, analyst rating events, and company fundamentals. You can fork this API on Parse and revise it to add an endpoint for historical OHLCV data or earnings estimates.
Can I retrieve news for multiple symbols in a single get_news call?+
No, get_news accepts a single symbol per request. If you need news across multiple tickers, you will need to make one call per symbol. You can fork this API on Parse and revise it to batch multiple symbols into a single response.
Page content last updated . Spec covers 4 endpoints from benzinga.com.
Related APIs in FinanceSee all →
marketbeat.com API
Track comprehensive stock market data including real-time overviews, analyst ratings, earnings reports, insider trades, and institutional ownership across thousands of companies. Search stocks, analyze financial statements and profitability metrics, monitor short interest, explore options chains, and stay updated with market headlines and competitor analysis.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
yahoofinance.com API
Access live stock quotes, historical price data, company profiles, and financial news for any ticker symbol. Supports real-time market data, OHLCV history across configurable intervals, detailed company fundamentals, and news aggregation across global exchanges.
barchart.com API
Monitor live stock quotes and commodity prices, analyze options chains with gamma exposure data, and access historical market time series to track top-performing stocks. Use real-time and historical data to make informed trading and investment decisions across equities and commodities.
nasdaq.com API
Track real-time and historical stock prices, ETF and mutual fund quotes, cryptocurrency data, and comprehensive company financials including earnings, dividends, and SEC filings all from one source. Research market trends with institutional holdings, short interest data, retail trading activity, and market movers to make informed investment decisions.
morningstar.com API
Get comprehensive financial data including stock quotes, company profiles, historical financials, valuation metrics, ownership details, dividends, and market movers from Morningstar. Search securities and access the latest stock news to make informed investment decisions.
bloomberg.com API
Track stock indices, commodities, currencies, and bonds in real-time, while monitoring market movers and staying updated with the latest financial news. Get comprehensive Bloomberg market data to make informed investment decisions across multiple asset classes.
ticker.finology.in API
Search and analyze stocks, view company financials and market indices, track super investors and their holdings, and explore IPO listings and sector performance. Get comprehensive market data including company overviews, financial statements, and real-time dashboard information to make informed investment decisions.