Discover/MeroLagani API
live

MeroLagani APImerolagani.com

Access Nepal Stock Exchange data via MeroLagani API: stock listings, company search, market summaries, quarterly reports, and financial metrics like EPS and P/E ratio.

Endpoint health
verified 4d ago
get_quarterly_reports
get_market_summary
get_company_details
get_stock_list
search_company
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the MeroLagani API?

The MeroLagani API provides access to Nepal Stock Exchange (NEPSE) data across 5 endpoints, covering everything from a full stock listing with symbols and internal IDs to per-company financials including EPS, P/E ratio, 52-week high/low, and market cap. The get_market_summary endpoint alone returns sector-wise turnover, top broker activity, and individual stock movements in a single call.

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.

from parse_apis.merolagani_stock_market_api import Merolagani, StockSummary, Stock, MarketSummary, QuarterlyReport

client = Merolagani()

# Search for banking stocks and navigate to full details
for summary in client.stocksummaries.search(query="Bank"):
    print(summary.symbol, summary.company_name)
    detail = summary.details()
    print(detail.ltp, detail.pe_ratio, detail.fifty_two_high, detail.market_cap)
    break

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

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

# List quarterly financial reports for the current month
for report in client.quarterlyreports.list():
    print(report.publication_date, report.title)
All endpoints · 5 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 Listings and Company Search

The get_stock_list endpoint returns the complete set of NEPSE-listed companies, each with a symbol, company_name, and internal id. A total count is included so you can verify completeness. The search_company endpoint accepts a query string and performs a case-insensitive match against both name and symbol — useful for fuzzy lookups where the exact ticker is unknown. It returns a total count alongside a results array using the same symbol, company_name, and id shape.

Company-Level Financials

The get_company_details endpoint takes a NEPSE symbol (e.g., NABIL, EBL) and returns a compact financial snapshot: ltp (last traded price), percentChange, fiftyTwoHigh, fiftyTwoLow, eps, peRatio, and marketCap in NPR. All values are returned as strings, so numeric parsing is the caller's responsibility.

Market Summary

The get_market_summary endpoint returns a broad view of the current trading session. The overall object includes turnover (t), traded quantity (q), transaction count (tn), and number of traded stocks (st). Supporting objects — turnover, sector, broker, and stock — each carry a date and a detail array, covering top stocks by turnover, sector-wise turnover breakdown, top brokers, and individual stock movements respectively. The mt field indicates current market status.

Quarterly Financial Reports

The get_quarterly_reports endpoint filters published financial statements by date range using from_date and to_date parameters in MM/DD/YYYY format. When no dates are provided, it defaults to the current calendar month. Each entry in the reports array includes publication_date, title, and description. The response echoes back the effective from_date and to_date so callers can verify which window was applied.

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
4d ago
Latest check
5/5 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 portfolio tracker that pulls ltp and percentChange per symbol via get_company_details
  • Screen NEPSE stocks by P/E ratio and market cap using fields returned from get_company_details
  • Monitor daily sector-wise turnover from get_market_summary to identify active market segments
  • Alert on quarterly financial report publications using get_quarterly_reports filtered by date range
  • Populate an autocomplete search for NEPSE companies using search_company with partial name or symbol queries
  • Compare top broker activity across sessions using the broker detail array in get_market_summary
  • Seed a company database with all NEPSE listings using the full symbol-name-ID list from get_stock_list
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 MeroLagani have an official developer API?+
MeroLagani does not publish an official public developer API or documentation for external use. This Parse API provides structured access to the same data available on merolagani.com.
What does `get_market_summary` return, and how is it structured?+
It returns a single JSON object containing five data sections: overall (aggregate session stats including turnover, quantity, transactions, and traded stock count), turnover (top stocks by turnover), sector (sector-wise turnover), broker (top brokers), and stock (individual stock movements). Each section includes a date field and a detail array. A top-level mt field indicates current market status.
Does `get_quarterly_reports` return reports for a specific company or sector?+
Not currently. The endpoint filters all published quarterly and financial statement events by date range only — it does not accept a company symbol or sector as a filter parameter. You can fork this API on Parse and revise it to add a symbol-level filter endpoint.
Is intraday or tick-by-tick price data available?+
Not currently. The API exposes the last traded price (ltp) and session-level aggregate data from get_market_summary, but does not provide intraday OHLCV, historical price series, or tick data. You can fork this API on Parse and revise it to add a historical price endpoint if that data becomes accessible.
Are there any known limitations with the `get_quarterly_reports` date format?+
Yes. Dates must be in MM/DD/YYYY format (e.g., 01/15/2024). When either parameter is omitted, the endpoint defaults to the first and last day of the current month — it does not accept partial date inputs or ISO 8601 format. Passing an incorrect date format may return empty results without an explicit error.
Page content last updated . Spec covers 5 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.
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.
nasdaq.com API
Track real-time and historical stock prices, ETF and mutual fund quotes, cryptocurrency data, and comprehensive company financials including earnings, dividends, and SEC filings all from one source. Research market trends with institutional holdings, short interest data, retail trading activity, and market movers to make informed investment decisions.