Discover/Co API
live

Co APIluse.co.zm

Access daily stock prices, LASI index data, listed companies, debt instruments, and SENS announcements from the Lusaka Securities Exchange via a structured JSON API.

This API takes change requests — .
Endpoint health
verified 21h ago
get_listed_companies
get_sens_documents
get_latest_news
get_stock_prices
get_sens_document_detail
8/8 passing latest checkself-healing
Endpoints
8
Updated
6d ago

What is the Co API?

The LuSE API provides structured access to the Lusaka Securities Exchange across 8 endpoints, covering daily trading data, index performance, listed equities, corporate bonds, and SENS announcements. The get_daily_market_data endpoint returns ISIN, closing price, bid/ask data, trade counts, and volume for every listed security in a single response. SENS documents are paginated by category and a dedicated detail endpoint resolves each notice to its PDF download URL.

This call costs2 credits / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/633a3018-dd43-43a3-a730-22b193daeb22/<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/633a3018-dd43-43a3-a730-22b193daeb22/get_daily_market_data' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 8 totalmissing one? ·

Returns the full Daily Stock Data table for the current trading day. Includes ISIN, closing price, trades, volume, bid/ask data for all listed securities on the LuSE. No pagination — all securities returned in a single response.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "as_of_date": "string - date of the market data in DD/MM/YYYY format",
    "stock_data": "array of SecurityData objects"
  },
  "sample": {
    "data": {
      "as_of_date": "09/06/2026",
      "stock_data": [
        {
          "Trades": "4",
          "Security": "AECI",
          "ISIN code": "ZM0000000284",
          "Price Change": "-",
          "Volume Traded": "15",
          "Best Ask Price": "121.00",
          "Best Bid Price": "-",
          "Best Ask Quantity": "475",
          "Best Bid Quantity": "-",
          "Value Traded (ZMW)": "1,815.00",
          "Closing Price (ZMW)": "123.00"
        }
      ]
    },
    "status": "success"
  }
}

About the Co API

Market Data and Index

get_daily_market_data returns the full daily stock table for the current trading day, including ISIN, closing price, trade count, volume, and bid/ask figures for all listed securities — no pagination required. get_lasi_index provides the LuSE All Share Index summary: current value, change, percentage change, volume traded, value traded, and market capitalization reported both including and excluding Shoprite (in ZMW), along with a narrative equity market trade summary. get_stock_prices offers a lighter view of the same trading session, returning only ticker, company name, and closing price.

Listed Securities and Debt Instruments

get_listed_companies returns a full roster of LuSE-listed equities with ticker symbol, full company name, and a descriptive blurb for each. get_listed_debt_instruments covers corporate bonds, returning name, face value, interest rate, ISIN, tenor in years, issue date, maturity date, and current status — all in a single response.

SENS Announcements

get_sens_documents retrieves Stock Exchange News Service announcements filtered by the category parameter, which accepts slugs: general-announcements, financial-statements, dividends, and annual-reports. Results are paginated at 10 items per page; the response includes the current page number and total_pages so callers can walk the full set. Each announcement returns a title, date, and URL. get_sens_document_detail accepts one of those URLs and resolves it to the announcement's title, publication date, category name, and a direct pdf_url for the underlying document.

News

get_latest_news returns the most recent news items shown on the LuSE homepage, each with a date and title. This is a snapshot of homepage content and does not include full article text.

Reliability & maintenanceVerified

The Co API is a managed, monitored endpoint for luse.co.zm — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when luse.co.zm 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 luse.co.zm 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
21h 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
  • Track daily closing prices and bid/ask spreads for all LuSE-listed equities using get_daily_market_data.
  • Monitor LASI index movements and market capitalization (including/excluding Shoprite) with get_lasi_index.
  • Build a corporate bond screener by pulling issuer, interest rate, tenor, and maturity date from get_listed_debt_instruments.
  • Automate ingestion of dividend announcements by paginating get_sens_documents with category dividends.
  • Resolve SENS notice URLs to PDF download links for document archiving using get_sens_document_detail.
  • Populate a company directory with ticker, name, and description for all LuSE-listed firms via get_listed_companies.
  • Surface the latest LuSE exchange news headlines in a financial dashboard using get_latest_news.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does the Lusaka Securities Exchange offer an official developer API?+
LuSE does not publish an official public developer API. luse.co.zm is an informational exchange website without documented API endpoints or authentication schemes for third-party developers.
What SENS categories can I filter by in get_sens_documents?+
get_sens_documents accepts a category parameter with four accepted slugs: general-announcements, financial-statements, dividends, and annual-reports. Each page returns up to 10 announcements; use the total_pages field in the response to determine how many pages exist for a given category.
How current is the market data — does the API provide intraday or tick data?+
The market data endpoints (get_daily_market_data, get_lasi_index, get_stock_prices) reflect the current trading day's figures as published on the LuSE website. Intraday tick-by-tick data and historical price series are not currently exposed. The API covers listed securities, daily OHLC-style closing data, and the LASI index summary. You can fork it on Parse and revise to add historical data endpoints if that data becomes available on the source.
Is historical stock price data available through this API?+
Not currently. The API covers daily data for the current trading session only — closing prices, volumes, and bid/ask figures via get_daily_market_data and get_stock_prices. You can fork it on Parse and revise to add endpoints that retrieve historical price tables if those pages exist on luse.co.zm.
Does get_sens_document_detail return the full text of announcements?+
No. get_sens_document_detail returns structured metadata — title, publication date, category, the notice page URL, and a direct pdf_url for the underlying document. Full text extraction from the PDF itself is not part of the response. You can fork the API on Parse and revise it to add a text-extraction step if needed.
Page content last updated . Spec covers 8 endpoints from luse.co.zm.
Related APIs in FinanceSee all →
marketview.luse.co.zm API
Monitor real-time prices for securities traded on the Lusaka Securities Exchange (LUSE) to stay updated on market movements and make informed investment decisions. Access live pricing data for all listed securities through a single connection point.
jse.co.za API
Access live JSE stock prices, company profiles, and market indices from the Johannesburg Stock Exchange. Search SENS announcements and view comprehensive market statistics to stay informed on JSE activity.
uzse.uz API
Monitor live stock quotes and detailed intraday trading data from the Tashkent Stock Exchange, including historical prices, listed companies, and complete securities information. Access real-time trade results and comprehensive market data to track investment opportunities across all exchange-listed securities.
sharesansar.com API
Access real-time Nepali stock prices, browse company information, and read the latest market news all in one place. Stay informed about the Nepal stock market with current pricing data and detailed news articles.
nepalstock.com.np API
Access real-time stock prices, market indices, and trading data from Nepal's stock exchange (NEPSE). Retrieve live price updates, market summaries, top performers, and detailed information on listed securities.
asx.com.au API
Access Australian Securities Exchange (ASX) market data, including equity prices, index summaries, company details, market announcements, and company directory listings. Retrieve upcoming IPO and float information alongside comprehensive data on all ASX-listed companies.
merolagani.com API
Access Nepal Stock Exchange (NEPSE) data via merolagani.com. Retrieve live stock listings, search for companies by name or symbol, view detailed financial metrics, monitor market summaries, and fetch quarterly financial reports.
marketindex.com.au API
Track ASX stock market data including company information, stock prices, dividends, director transactions, and sector performance. Search for stocks, monitor upcoming dividends, view market announcements, and analyze investment opportunities across the Australian securities exchange.