Discover/Boursorama API
live

Boursorama APIboursorama.com

Access real-time quotes, historical OHLCV data, forex rates, commodities, and market movers from Boursorama via 8 structured JSON endpoints.

Endpoint health
verified 3d ago
get_stock_ticks_daily
get_cac40_price
get_stock_price
get_stock_ticks_intraday
get_commodity_price
8/8 passing latest checkself-healing
Endpoints
8
Updated
26d ago

What is the Boursorama API?

The Boursorama API exposes 8 endpoints covering real-time quotes, intraday and daily OHLCV history, instrument search, forex rates, commodity prices, and French market movers. The get_stock_price endpoint returns current price, open, high, low, volume, and currency for any Boursorama symbol — from CAC 40 stocks to ETFs to currency pairs — discoverable through search_instrument by name or ISIN.

Try it

No input parameters required.

api.parse.bot/scraper/90d33d56-60a4-4ea2-8f5d-7eb28c3ef99d/<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/90d33d56-60a4-4ea2-8f5d-7eb28c3ef99d/get_cac40_price' \
  -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 boursorama-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.

"""Boursorama Financial API — real-time prices, historical ticks, and instrument search."""
from parse_apis.boursorama_financial_api import Boursorama, InstrumentNotFound

client = Boursorama()

# Get the CAC 40 index quote directly (no parameters needed).
cac = client.quotes.cac40()
print(f"CAC 40: {cac.price} pts (open={cac.open}, high={cac.high}, low={cac.low})")

# Search for instruments by name; iterate with a cap.
for inst in client.instruments.search(query="LVMH", limit=3):
    print(f"  Found: {inst.name} ({inst.symbol}) on {inst.market}")

# Fetch a specific stock quote by symbol, then drill into daily ticks.
quote = client.quotes.get(symbol="1rPTTE")
print(f"{quote.name}: {quote.price} {quote.currency}")

for tick in quote.ticks_daily(length=5, limit=5):
    print(f"  Day {tick.day}: close={tick.close}, volume={tick.volume}")

# Typed error handling for a bad symbol.
try:
    client.quotes.get(symbol="INVALID_SYMBOL_XYZ")
except InstrumentNotFound as exc:
    print(f"Expected error: {exc}")

# Market movers — top gainers on the French market.
mover = client.movers.list(limit=1).first()
if mover:
    print(f"Top mover: {mover.name} {mover.change_pct}")

print("Exercised: quotes.cac40 / quotes.get / instruments.search / ticks_daily / movers.list")
All endpoints · 8 totalmissing one? ·

Returns the current CAC 40 index quote including open, high, low, close, volume, and day-offset timestamp. No parameters required — always fetches the CAC 40 (symbol 1rPCAC).

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "low": "number, daily low",
    "high": "number, daily high",
    "name": "string, index name",
    "open": "number, opening price",
    "price": "number, current price in points",
    "symbol": "string, Boursorama symbol (always 1rPCAC)",
    "volume": "integer, trading volume",
    "timestamp": "integer, Boursorama internal day offset"
  },
  "sample": {
    "data": {
      "low": 8142.75,
      "high": 8240.63,
      "name": "CAC 40",
      "open": 8223.05,
      "price": 8161.83,
      "symbol": "1rPCAC",
      "volume": 4614,
      "timestamp": 20614
    },
    "status": "success"
  }
}

About the Boursorama API

Quotes and Instrument Coverage

The get_stock_price endpoint accepts any Boursorama symbol and returns nine fields: price, open, high, low, volume, currency, name, symbol, and a timestamp day-offset. The dedicated get_cac40_price endpoint requires no parameters and always returns the CAC 40 index (symbol 1rPCAC). To find symbols for other instruments, search_instrument accepts a free-text query or ISIN (e.g., FR0000120271) and returns a list of matches with name, symbol, type (Action, ETF, Indice, BND, OPCVM), market, and url.

Historical Price Data

Two endpoints cover different time resolutions. get_stock_ticks_intraday fetches short-term OHLCV data (period=0) as an array of candles in QuoteTab, where each entry carries d (day offset), o, h, l, c, and v. get_stock_ticks_daily returns the same shape at daily resolution (period=1) and accepts a length parameter for the number of days requested. Note that some symbols require a length of at least 20–30 for the intraday endpoint to return results.

Forex and Commodities

get_forex_rate returns the current exchange rate for a currency pair via its Boursorama forex symbol (e.g., 1xEURUS for EUR/USD), including price, open, high, low, and volume — though volume is often 0 for forex instruments. get_commodity_price works identically for commodities; verified symbols include 8xBRN for Brent Crude and _GC for Gold. Additional forex and commodity symbols can be found through search_instrument.

Market Movers

get_market_movers requires no parameters and returns the top gainers from the SBF 120 palmares, each with name, symbol, last (price string), and change_pct (percentage string). The list includes a mix of stocks, commodities, and indices from the Boursorama market overview page.

Reliability & maintenanceVerified

The Boursorama API is a managed, monitored endpoint for boursorama.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when boursorama.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 boursorama.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
3d ago
Latest check
8/8 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 real-time CAC 40 levels using get_cac40_price for a French equity dashboard.
  • Build a portfolio tracker that refreshes prices for multiple stocks via get_stock_price by Boursorama symbol.
  • Retrieve 90 days of daily OHLCV candles with get_stock_ticks_daily to backtest a moving-average strategy.
  • Look up the ISIN for any French stock or ETF using search_instrument to map ISINs to tradeable symbols.
  • Track EUR/USD and other forex pairs in real time using get_forex_rate with Boursorama forex symbols.
  • Fetch Brent Crude and Gold spot prices via get_commodity_price for a commodities monitoring widget.
  • Identify top daily gainers on the French market using get_market_movers to surface momentum signals.
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 Boursorama offer an official developer API?+
Boursorama does not publish a documented public developer API. There is no official API portal, token system, or listed endpoints on boursorama.com for third-party developers.
How do I discover the correct symbol to pass to `get_stock_price` or the history endpoints?+
Use search_instrument with a company name (e.g., 'LVMH') or a standard ISIN. Each result in the results array includes a symbol field (e.g., '1rPMC') that you can pass directly to get_stock_price, get_stock_ticks_daily, or get_stock_ticks_intraday.
Does the intraday tick endpoint always return data for any symbol?+
Not reliably with small length values. Some symbols return no data when length is below 20–30. Using length=30 as the default avoids most empty responses. Thinly traded instruments or recently listed symbols may still return sparse arrays.
Does the API cover non-French markets such as US equities, German stocks, or crypto?+
The API is centred on instruments listed on Boursorama, which skews heavily toward French and European markets. US equities and crypto assets are not currently covered. You can fork the API on Parse and revise it to add endpoints targeting those instrument classes if Boursorama carries them.
Does `get_market_movers` return losers as well as gainers?+
Currently it returns only the top gainers (sorted by change_pct descending) from the SBF 120 palmares. The losers list is not exposed. You can fork the API on Parse and revise it to add a bottom-movers endpoint.
Page content last updated . Spec covers 8 endpoints from boursorama.com.
Related APIs in FinanceSee all →
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.
casablanca-bourse.com API
Monitor real-time share prices and market data for companies listed on the Casablanca Stock Exchange, including reference, opening, and closing prices organized by sector. Stay informed on stock performance and make data-driven investment decisions with up-to-date market information.
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.
boerse-stuttgart.de API
Search Börse Stuttgart securities by name, WKN, or ISIN and retrieve live quotes, detailed instrument pages, index snapshots with constituents, and warrant (Optionsschein) listings for a chosen underlying.
forex.com API
Access real-time forex prices and currency exchange rates, track client sentiment and pivot points, and browse economic calendar events. Search across multiple currency instruments and retrieve rollover rates.
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.
infomoney.com.br API
Track Brazilian stocks, currencies, and cryptocurrencies with real-time quotes, historical OHLCV data, fundamentals, and dividends. Access intraday price movements, top B3 movers, exchange rates, and market news from InfoMoney.
statusinvest.com.br API
Search and analyze Brazilian stocks with real-time market data, including detailed financial indicators, historical price movements, and dividend information. Track stock performance and investment metrics all in one place.