Discover/MeroLagani API
live

MeroLagani APImerolagani.com

Access Nepal Stock Exchange data via the MeroLagani API: stock listings, company search, market summaries, floorsheet transactions, and quarterly reports.

This API takes change requests — .
Endpoint health
verified 2d ago
get_company_details
search_company
get_stock_list
get_market_summary
get_quarterly_reports
6/6 passing latest checkself-healing
Endpoints
6
Updated
28d ago

What is the MeroLagani API?

The MeroLagani API provides 6 endpoints covering Nepal Stock Exchange (NEPSE) market data sourced from merolagani.com. You can retrieve a full list of all listed companies via get_stock_list, fetch per-stock financial metrics including EPS, P/E ratio, and 52-week range via get_company_details, pull individual trade-level floorsheet records, and access sector-wise market summaries — all in structured JSON.

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

No input parameters required.

api.parse.bot/scraper/e0e96569-8b5b-4bb5-9680-0d5927228350/<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/e0e96569-8b5b-4bb5-9680-0d5927228350/get_stock_list' \
  -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 merolagani-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.

"""Walkthrough: Merolagani Stock Market SDK — bounded, re-runnable; every call capped."""
from parse_apis.Merolagani_Stock_Market_API import Merolagani, ParseError

client = Merolagani()

# Search for banking stocks
for summary in client.stock_summaries.search(query="Bank", limit=3):
    print(summary.symbol, summary.company_name)

# Get full details for a known stock
stock = client.stocks.get(symbol="NABIL")
print(stock.name, stock.ltp, stock.percent_change, stock.fifty_two_high)

# Get today's market summary
market = client.market_summaries.get()
print(market.mt, market.overall.d, market.overall.t)

# List floorsheet transactions for a specific stock
for txn in client.floorsheet_transactions.list(symbol="NABIL", limit=3):
    print(txn.transaction_no, txn.symbol, txn.buyer_broker, txn.seller_broker, txn.quantity, txn.rate, txn.amount)

# Drill-down: get details from a search result
item = client.stock_summaries.search(query="Hydro", limit=1).first()
if item:
    try:
        detail = item.details()
        print(detail.name, detail.ltp, detail.eps)
    except ParseError as e:
        print(f"error: {e.code}")

print("exercised: stock_summaries.search, stocks.get, market_summaries.get, floorsheet_transactions.list, StockSummary.details")
All endpoints · 6 totalmissing one? ·

Get a complete list of all stock symbols and company names listed on NEPSE. Returns all listed companies with their symbol, name, and internal ID. No parameters required.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer total count of stocks",
    "stocks": "array of stock summary objects with symbol, company_name, and id"
  },
  "sample": {
    "data": {
      "total": 1638,
      "stocks": [
        {
          "id": "1",
          "symbol": "ADBL",
          "company_name": "Agriculture Development Bank Limited"
        },
        {
          "id": "3",
          "symbol": "CBL",
          "company_name": "Civil Bank Ltd"
        }
      ]
    },
    "status": "success"
  }
}

About the MeroLagani API

Stock Discovery and Company Data

The get_stock_list endpoint returns the complete set of NEPSE-listed companies, including each company's symbol, full name, and internal ID — useful for building lookup tables or seeding subsequent queries. search_company accepts a free-text query parameter matched against both company names and ticker symbols, returning a results array with matching symbol, company_name, and id fields. Once you have a symbol, get_company_details returns a focused financial snapshot: ltp (last traded price), eps, peRatio, marketCap, fiftyTwoHigh, fiftyTwoLow, and percentChange.

Market Activity and Floorsheet

get_market_summary returns a snapshot of the most recent trading session across five objects: overall (aggregate turnover, quantity, and transaction count), turnover (top stocks by value traded), sector (sector-wise turnover breakdown), broker (top brokers), and stock (individual stock price movements). No parameters are required.

The get_floorsheet endpoint exposes the NEPSE trade log at transaction level. Each record includes transaction_no, symbol, buyer_broker, seller_broker, quantity, rate, and amount. Results are paginated at 500 records per page; use the page parameter to iterate. You can filter by symbol for a single stock, and by from_date and to_date (both in MM/DD/YYYY format) to target a specific session.

Quarterly Reports

get_quarterly_reports filters stock event announcements for financial statement keywords, returning matching items with publication_date, title, and description. The from_date and to_date parameters (both optional, both MM/DD/YYYY) control the date window; when omitted, the endpoint defaults to the current calendar month. The response includes the resolved from_date and to_date values so you can confirm what range was actually queried.

Reliability & maintenanceVerified

The MeroLagani API is a managed, monitored endpoint for merolagani.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when merolagani.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 merolagani.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
2d ago
Latest check
6/6 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
  • Build a NEPSE stock screener using EPS, P/E ratio, and 52-week range from get_company_details
  • Track intraday trade flow for a specific symbol by paginating through get_floorsheet filtered by symbol
  • Monitor sector-wise market turnover shifts using the sector object from get_market_summary
  • Aggregate quarterly earnings release dates across all listed companies via get_quarterly_reports
  • Resolve a partial company name to its NEPSE ticker symbol using search_company before fetching details
  • Identify top broker activity in a given session using the broker detail array from get_market_summary
  • Populate a company directory with all NEPSE-listed symbols and names via get_stock_list
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 MeroLagani have an official developer API?+
MeroLagani does not publish a documented public developer API. This API provides structured programmatic access to the same NEPSE data the site surfaces.
What does get_floorsheet return and how do I filter it to a single stock?+
get_floorsheet returns individual trade records with fields including transaction_no, symbol, buyer_broker, seller_broker, quantity, rate, and amount. Pass the symbol parameter (e.g. NABIL) to limit results to that ticker. Use from_date and to_date in MM/DD/YYYY format to target a specific trading session. Each page holds up to 500 records; use the page parameter to paginate through large result sets.
How current is the market data returned by get_market_summary?+
All data in get_market_summary reflects the most recent completed trading session available on merolagani.com. NEPSE operates on Nepal Standard Time and closes at specific hours on trading days; data for the current session may not be available until the session closes and the source updates.
Does the API expose historical price series or OHLCV candlestick data for individual stocks?+
Not currently. The API covers current-session metrics (ltp, percentChange, 52-week high/low) via get_company_details and transaction-level floorsheet records via get_floorsheet, but does not return a time series of historical OHLCV prices. You can fork this API on Parse and revise it to add an endpoint targeting historical price data.
Can I retrieve announcements beyond quarterly reports, such as AGM notices or bonus declarations?+
The get_quarterly_reports endpoint filters specifically for quarterly and financial statement announcements. Other corporate event types — AGM notices, dividend declarations, rights offerings — are not currently exposed as separate endpoints. You can fork this API on Parse and revise it to add endpoints covering those announcement categories.
Page content last updated . Spec covers 6 endpoints from merolagani.com.
Related APIs in FinanceSee all →
nepsealpha.com API
Track Nepal's stock market in real-time with live prices, historical OHLCV data, and detailed sector summaries, while leveraging technical and fundamental analysis signals to make informed trading decisions. Monitor floorsheet transactions, assess investment risks, and search specific symbols all from a single comprehensive market data platform.
nepalytix.com API
Monitor real-time Nepal Stock Exchange data by searching stocks, viewing detailed price information, checking market summaries, browsing stock listings, and tracking floorsheet transaction records all in one place. Stay informed about NEPSE market movements and make data-driven investment decisions with comprehensive market intelligence at your fingertips.
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.
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.
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.
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.
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.
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.