# Casablanca Bourse — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** Finance & Markets | **Website:** [www.casablanca-bourse.com/en/live-market/marche-actions-groupement](https://www.casablanca-bourse.com/en/live-market/marche-actions-groupement) | **Docs:** [parse.bot/marketplace/cbbc4aa1-0d01-412e-9825-8e267700b9b0/casablanca-bourse-com-api](https://parse.bot/marketplace/cbbc4aa1-0d01-412e-9825-8e267700b9b0/casablanca-bourse-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-casablanca-bourse-com-api-cbbc4aa1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_share_prices

Retrieve current share prices for companies listed on the Casablanca Bourse. Returns reference price, opening price, closing price, high/low prices, change percentage, volume, quantity traded, market capitalization, and bid/ask data for each company, grouped by sector. Supports optional filtering by sector name or company name (partial match, case-insensitive). Without filters, returns all listed companies across all sectors. The data refreshes intraday during trading sessions. Sector names are in French (e.g. Banques, Assurances, Mines).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company` | string | No | Filter by company name (partial match, case-insensitive). Omitting returns all companies. |
| `sector` | string | No | Filter by sector name in French (partial match, case-insensitive). Omitting returns all sectors. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-casablanca-bourse-com-api-cbbc4aa1/get_share_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company":"<string>","sector":"<string>"}'
```
