Discover/Co API
live

Co APImarketview.luse.co.zm

Access live last-traded prices for all securities listed on the Lusaka Securities Exchange (LUSE) via a single API endpoint.

Endpoints
1
Updated
18d ago

What is the Co API?

The LUSE MarketView API provides live pricing data for every security listed on the Lusaka Securities Exchange through a single endpoint, get_securities_prices. One call returns an array covering all listed tickers and their last-traded prices — no pagination, no filtering required. It is a straightforward feed for any application that needs current LUSE market data.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/8936588a-bc37-46a1-a436-0be5a27452a0/<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 POST 'https://api.parse.bot/scraper/8936588a-bc37-46a1-a436-0be5a27452a0/get_securities_prices' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{}'
All endpoints · 1 totalmissing one? ·

Returns live market view prices for all LUSE-listed securities. Each record contains the security ticker symbol, its last traded price, its closing price, and the last price change timestamp. Returns all securities in a single call with no pagination.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "securities": "array of objects, each containing security ticker, last traded price, closing price, and last price change timestamp"
  },
  "sample": {
    "data": {
      "securities": [
        {
          "last": "115.00",
          "close": "0.00",
          "security": "AECI",
          "last_time": "00:00:00"
        },
        {
          "last": "63.18",
          "close": "0.00",
          "security": "CHIL",
          "last_time": "00:00:00"
        }
      ]
    },
    "status": "success"
  }
}

About the Co API

What the API Returns

The get_securities_prices endpoint returns a flat array of security objects. Each object contains a ticker symbol identifying the listed security and its last-traded price on the LUSE. The response covers all currently listed securities in one call, so there is no need to iterate through pages or manage cursors.

Endpoint Behavior

get_securities_prices accepts no input parameters — POST the endpoint and receive the full securities list. This design is intentional for the LUSE context, where the total number of listed instruments is small enough that returning everything at once is practical. Response time reflects live market conditions during trading hours.

Coverage and Scope

Coverage is limited to securities listed on the Lusaka Securities Exchange. The response fields exposed are the ticker symbol and last-traded price per security. Additional market data such as bid/ask spreads, trading volumes, market capitalization, or historical prices are not part of the current response schema.

Reliability & maintenance

The Co API is a managed, monitored endpoint for marketview.luse.co.zm — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when marketview.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 marketview.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.

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 LUSE price board in a financial dashboard, sourcing ticker symbols and last-traded prices from get_securities_prices.
  • Trigger portfolio valuation recalculations whenever a security's last-traded price changes.
  • Monitor a watchlist of specific LUSE tickers by filtering the returned securities array client-side.
  • Feed current LUSE prices into a spreadsheet or BI tool for analyst review.
  • Power a mobile app that shows Zambian equity prices to retail investors.
  • Alert users when a specific security's last-traded price crosses a threshold.
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 have an official developer API?+
LUSE does not publish a documented public developer API. The MarketView portal at marketview.luse.co.zm is their market data interface, but no official REST or data feed API with developer documentation is available as of this writing.
What exactly does `get_securities_prices` return for each security?+
Each object in the returned array contains two fields: the security's ticker symbol and its last-traded price. The endpoint covers all LUSE-listed securities in a single response with no filtering options at the API level — any filtering by ticker or price range must be done on the client side after receiving the full array.
Does the API return trading volume or bid/ask data alongside prices?+
Not currently. The API exposes only ticker symbol and last-traded price per security. You can fork this API on Parse and revise it to add volume, bid/ask, or other fields if that data becomes available from the source.
Can I retrieve historical price data or end-of-day snapshots through this API?+
Not currently. The API reflects live market view prices only; historical OHLCV data or end-of-day series are not part of the current response. You can fork this API on Parse and revise it to add a historical endpoint if the source exposes that data.
Are prices available outside of LUSE trading hours?+
The API returns last-traded prices, which reflect the most recent trade recorded on the exchange. Outside trading hours the prices returned will be the last values from the most recent session rather than live updates, since no new trades are occurring.
Page content last updated . Spec covers 1 endpoint from marketview.luse.co.zm.
Related APIs in FinanceSee all →
luse.co.zm API
Access real-time market data, index performance, and company information from the Lusaka Securities Exchange, including daily trading data, listed companies and debt instruments, SENS announcements, and the latest financial news. Monitor market trends and stay informed on securities exchange activity across Zambia's capital markets.
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.
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.
prudentialpensions.co.zm API
Access current and historical unit prices for Prudential Pensions Management Zambia investment funds to track fund performance and make informed investment decisions. Monitor price trends over time and compare multiple funds to evaluate your pension portfolio's growth.
sse.com.cn API
Monitor Shanghai Stock Exchange market activity with real-time equity quotes, index performance data, and daily trading statistics. Search for specific securities and view comprehensive market overviews to track stock prices and exchange trends.
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.
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.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.