Discover/Nepalytix API
live

Nepalytix APInepalytix.com

Access NEPSE stock prices, market summaries, floorsheet transactions, and 641+ listed companies via the Nepalytix API. EPS, P/E, BVPS, and index data included.

This API takes change requests — .
Endpoint health
verified 1h ago
search_stocks
get_stock_details
get_market_summary
get_stock_list
get_floorsheet
5/5 passing latest checkself-healing
Endpoints
5
Updated
1h ago

What is the Nepalytix API?

The Nepalytix API provides structured access to Nepal Stock Exchange (NEPSE) market data across 5 endpoints covering roughly 641 listed companies. You can retrieve per-stock fundamentals like EPS, P/E ratio, BVPS, and 52-week high/low via get_stock_details, pull market-wide statistics and top gainers/losers via get_market_summary, or page through individual trade records broker-by-broker using get_floorsheet.

This call costs10 credits / call— charged only on success
Try it
Search query to match against stock symbols (case-insensitive substring match, e.g. 'NAB' matches NABIL, NABBC).
api.parse.bot/scraper/27f8bbc4-1e92-46a2-bb42-eee10f8da93b/<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/27f8bbc4-1e92-46a2-bb42-eee10f8da93b/search_stocks?query=NAB' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalmissing one? ·

Search stocks by symbol substring match. Returns matching symbols with company names (fetched for up to top 5 results). Uses the full scanner dataset of ~641 listed companies.

Input
ParamTypeDescription
queryrequiredstringSearch query to match against stock symbols (case-insensitive substring match, e.g. 'NAB' matches NABIL, NABBC).
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of matching results",
    "results": "array of stock objects with symbol, company_name (null if not fetched), and id"
  },
  "sample": {
    "data": {
      "total": 7,
      "results": [
        {
          "id": "NABIL",
          "symbol": "NABIL",
          "company_name": "Nabil Bank Limited"
        },
        {
          "id": "NABBC",
          "symbol": "NABBC",
          "company_name": "Narayani Development Bank Limited"
        }
      ]
    },
    "status": "success"
  }
}

About the Nepalytix API

Stock Search and Details

The search_stocks endpoint accepts a case-insensitive substring query against NEPSE symbols — for example, querying NAB returns matches like NABIL and NABBC — and returns up to 5 results with company names alongside a total match count. For deeper data on a single company, get_stock_details accepts a NEPSE symbol and returns OHLC prices, day volume, LTP, 52-week high/low, sector classification, and fundamental metrics including eps, eps_ttm, bvps, and pe_ratio. Both endpoints work from the same symbol namespace.

Market Overview

get_market_summary requires no parameters and returns a snapshot of the full NEPSE market: the main index with its own OHLC and point/percentage change, an array of sub-indices each with direction flags, and ranked lists of the top 10 gainers, top 10 losers, and top 10 stocks by turnover. The market_stats object includes total_turnover, total_traded_shares, total_transactions, total_scrips_traded, and an as_of timestamp. get_stock_list complements this with a bulk listing of all ~641 symbols, each with closing price, percentage change, and volume — though company names are null in the bulk response and require a separate get_stock_details call.

Floorsheet Transactions

get_floorsheet returns individual broker-level transaction records for a given symbol. Each record includes buyer_broker, seller_broker, quantity, rate, amount, and transaction_time. A summary object aggregates total transactions, total quantity, and total amount for the queried date. The optional date parameter accepts YYYY-MM-DD format; when omitted, the latest available trading day is used. Results are paginated at 20 records per page via the page parameter, with full pagination metadata returned in the pagination object.

Reliability & maintenanceVerified

The Nepalytix API is a managed, monitored endpoint for nepalytix.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when nepalytix.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 nepalytix.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
1h 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
  • Screen all ~641 NEPSE-listed stocks by percentage change and volume using get_stock_list to build a daily momentum watchlist.
  • Monitor top 10 gainers and losers in real time via get_market_summary for end-of-day market recap dashboards.
  • Retrieve broker-level trade records from get_floorsheet to analyze buyer/seller broker activity for a specific stock.
  • Build a fundamental screener using EPS, P/E ratio, and BVPS fields returned by get_stock_details across symbols.
  • Track NEPSE sub-index movements and market turnover statistics from get_market_summary for sector-level analysis.
  • Automate symbol lookup with search_stocks to resolve partial ticker inputs before fetching full stock details.
  • Paginate through floorsheet transaction history on a specific date to reconstruct intraday trading patterns for a company.
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 Nepalytix have an official developer API?+
Nepalytix does not publish a documented public developer API. This Parse API provides structured programmatic access to the NEPSE data available on nepalytix.com.
What does get_floorsheet return and how do I filter by date?+
get_floorsheet returns individual transaction records for a given NEPSE symbol, including buyer and seller broker codes, quantity, rate, amount, and transaction time, plus a summary of total transactions and total amount. Pass the optional date parameter in YYYY-MM-DD format to target a specific trading day; omitting it returns the latest available day's data. Pagination is controlled via the page parameter, with 20 records per page.
Does get_stock_list include company names for all listed stocks?+
The name field is null in the bulk listing returned by get_stock_list. To retrieve company names, call get_stock_details with the individual symbol. You can also get company names for up to 5 results at a time via search_stocks.
Does the API cover historical OHLC data or price series over time?+
Not currently. The API covers current-day and latest-session price data through get_stock_details and get_stock_list, and floorsheet records for a selected date via get_floorsheet. There is no endpoint for multi-day historical OHLC series. You can fork this API on Parse and revise it to add a historical data endpoint if that time-series depth is available on the source.
Are all NEPSE-listed sectors covered, and is data available for suspended or delisted companies?+
The API reflects the ~641 companies currently in the NEPSE scanner dataset, and get_stock_details returns a sector field for each company. Coverage of suspended or recently delisted companies is not guaranteed — the data reflects what is actively listed and tradable on NEPSE. You can fork this API on Parse and revise it to add filtering or handling for non-trading symbols.
Page content last updated . Spec covers 5 endpoints from nepalytix.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.
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.
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.
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.
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.
dps.psx.com.pk API
Monitor live and historical stock prices, market indices, and sector performance from the Pakistan Stock Exchange to track investment opportunities and trading patterns. Search specific symbols, view market performers, and analyze intraday trends and OHLCV data for all listed companies.
hdfcsec.com API
Track real-time equity market movements by finding the most active NSE stocks, top gainers and losers, 52-week highs and lows, and detailed stock quotes. Search for specific stocks and get comprehensive market overviews to make informed investment decisions.