Discover/Bloomberg API
live

Bloomberg APIbloomberg.com

Access Bloomberg market data via 3 endpoints: real-time indices, commodities, currencies, bonds, top movers, and latest market news articles.

Endpoint health
verified 1d ago
get_market_movers
get_market_news
get_market_data
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Bloomberg API?

The Bloomberg Markets API provides 3 endpoints covering real-time prices for stock indices, commodities, currencies, and bonds, plus the most active stocks and latest news from Bloomberg's markets section. The get_market_data endpoint accepts any Bloomberg ticker ID (e.g. SPX:IND, CL1:COM, EURUSD:CUR) and returns price, percent change, and timestamps. get_market_movers pairs each active stock with a live headline and article URL.

Try it
Comma-separated Bloomberg ticker IDs. Format is SYMBOL:TYPE where TYPE is IND (index), COM (commodity), CUR (currency), GOV (government bond). Examples: SPX:IND, CL1:COM, EURUSD:CUR, GT10:GOV.
api.parse.bot/scraper/2e69f8d8-bcf7-4bba-a8ac-17a49c3c1887/<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/2e69f8d8-bcf7-4bba-a8ac-17a49c3c1887/get_market_data?ticker_ids=SPX%3AIND%2CCCMP%3AIND%2CINDU%3AIND' \
  -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 bloomberg-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.

"""Bloomberg Markets API — real-time indices, movers, and news."""
from parse_apis.bloomberg_markets_api import Bloomberg, Ticker, Mover, Article, TickerNotFound

client = Bloomberg()

# Fetch major US index tickers — limit caps total items returned.
for ticker in client.tickers.list(ticker_ids="SPX:IND,CCMP:IND,INDU:IND", limit=5):
    print(ticker.name, ticker.price, ticker.percent_change_1day)

# Get today's most active stocks with related headlines.
mover = client.movers.list(limit=1).first()
if mover:
    print(mover.ticker_id, mover.percent_change_1day, mover.headline)

# Browse latest market news articles.
for article in client.articles.list(limit=3):
    print(article.headline, article.byline, article.published_at)

# Typed error handling: catch when ticker lookup yields nothing.
try:
    for t in client.tickers.list(ticker_ids="INVALID:XXX", limit=5):
        print(t.ticker_id, t.price)
except TickerNotFound as exc:
    print(f"Ticker not found: {exc.ticker_ids}")

print("exercised: tickers.list / movers.list / articles.list / TickerNotFound")
All endpoints · 3 totalmissing one? ·

Real-time market data for stock indices, commodities, currencies, and bonds. Accepts any Bloomberg ticker ID via the comparison data API. Each ticker includes current price, 1-day/1-month/1-year percent changes, and last-update timestamps. A single request can fetch up to ~50 tickers. Tickers not recognized by Bloomberg return an empty collection entry.

Input
ParamTypeDescription
ticker_idsstringComma-separated Bloomberg ticker IDs. Format is SYMBOL:TYPE where TYPE is IND (index), COM (commodity), CUR (currency), GOV (government bond). Examples: SPX:IND, CL1:COM, EURUSD:CUR, GT10:GOV.
Response
{
  "type": "object",
  "fields": {
    "count": "integer total number of tickers returned",
    "tickers": "array of Ticker objects with ticker_id, name, price, percent changes, and timestamps"
  },
  "sample": {
    "data": {
      "count": 1,
      "tickers": [
        {
          "name": "S&P 500 INDEX",
          "price": 7266.99,
          "country": "US",
          "long_name": "S&P 500 INDEX",
          "ticker_id": "SPX:IND",
          "price_date": "6/10/2026",
          "last_update_iso": "2026-06-10T20:42:12.000Z",
          "price_change_1day": -119.66,
          "percent_change_1day": -1.62,
          "percent_change_1year": 20.34,
          "percent_change_1month": -1.78
        }
      ]
    },
    "status": "success"
  }
}

About the Bloomberg API

Market Data by Ticker

The get_market_data endpoint accepts a comma-separated list of Bloomberg ticker IDs via the ticker_ids parameter. You can pass equity indices (e.g. SPX:IND), commodity futures (e.g. CL1:COM), currency pairs (e.g. EURUSD:CUR), or bond tickers. Each ticker object in the response includes id, name, price, percent change fields, and timestamps. Omitting ticker_ids returns a default set of major indices and commodities.

Market Movers

get_market_movers returns the most active or largest-moving stocks at the time of the request. Each mover object carries ticker_id, price, percent_change_1day, a headline from an associated Bloomberg article, and an article_url. The endpoint currently accepts a locale parameter, though only en is supported. This makes the endpoint useful for building watchlists or alerting pipelines that need both price movement and a linked editorial context in one call.

News Articles with Pagination

get_market_news fetches articles from Bloomberg's markets section. Each article object includes id, headline, summary, url, byline, published_at, updated_at, brand, type, a premium flag (indicating whether the article sits behind Bloomberg's paywall), and image_url. Pagination is controlled through limit and offset parameters, and the response echoes back the offset used alongside a count of articles returned. The page parameter lets you target a specific Bloomberg page section.

Reliability & maintenanceVerified

The Bloomberg API is a managed, monitored endpoint for bloomberg.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bloomberg.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 bloomberg.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
1d ago
Latest check
3/3 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
  • Display a live multi-asset dashboard showing prices and percent changes for custom Bloomberg ticker lists using get_market_data.
  • Build a daily market-open email digest by pulling top movers and their associated Bloomberg headlines from get_market_movers.
  • Filter get_market_news by premium flag to surface only freely accessible Bloomberg articles for redistribution or summarization workflows.
  • Track commodity futures like crude oil (CL1:COM) or gold alongside equity indices in the same response for cross-asset analysis.
  • Paginate through Bloomberg market news using limit and offset to archive article metadata, bylines, and publication timestamps.
  • Pair mover ticker_id data with get_market_data to enrich an active-stocks feed with multi-timeframe percent change context.
  • Monitor currency pairs such as EURUSD:CUR or bond tickers alongside equity indices for a macro trading dashboard.
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 Bloomberg have an official developer API?+
Yes. Bloomberg offers the Bloomberg Enterprise Access Point (EAP) and the legacy Bloomberg API (BLPAPI) for terminal subscribers. These are enterprise products requiring a Bloomberg Terminal contract. Details are at bloomberg.com/professional.
What does the `premium` field in `get_market_news` indicate?+
The premium boolean on each article object signals whether that article is behind Bloomberg's paywall. The API returns the metadata (headline, summary, URL, byline, dates) for premium articles, but the full article body is not included in the response regardless of that flag.
Does `get_market_data` support historical price data or only current prices?+
The endpoint returns current price and percent change figures with timestamps — it does not return historical time series or OHLCV data. The API covers real-time snapshot data for tickers. You can fork it on Parse and revise it to add a historical data endpoint if that capability becomes needed.
Is company-level fundamental data (earnings, P/E ratios, balance sheets) available?+
Not currently. The API covers market prices, percent changes, active mover rankings, and news article metadata. Fundamental financial data is not exposed by the current endpoints. You can fork it on Parse and revise it to add an endpoint targeting Bloomberg's company or earnings data pages.
How does pagination work in `get_market_news`?+
The get_market_news endpoint accepts limit (number of articles to return) and offset (starting position in the result set). The response echoes both count and offset so you can walk through pages sequentially. There is no cursor-based pagination; increment offset by your limit value to fetch the next page.
Page content last updated . Spec covers 3 endpoints from bloomberg.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.
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.
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.
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.
alphavantage.co API
Track stock prices, forex rates, and cryptocurrency values with real-time and historical market data, while accessing company financials, earnings reports, and technical indicators. Search tickers, monitor economic indicators, analyze news sentiment, and get global quotes all in one place.
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.
benzinga.com API
Access real-time stock quotes, company fundamentals, financial news, and analyst ratings all in one place to make informed investment decisions. Track market movements and research companies with up-to-date pricing, ratings, and news coverage.