Discover/Nepalytix API
live

Nepalytix APInepalytix.com

Access NEPSE stock prices, market summaries, floorsheet transactions, and broker analysis for ~641 listed companies via the Nepalytix API.

Endpoint health
verified 4d ago
search_stocks
get_stock_details
get_stock_list
get_floorsheet
get_market_summary
6/6 passing latest checkself-healing
Endpoints
6
Updated
17d ago

What is the Nepalytix API?

The Nepalytix API exposes 6 endpoints covering Nepal Stock Exchange (NEPSE) market data for approximately 641 listed companies. You can retrieve real-time price and fundamental metrics via get_stock_details, scan the full NEPSE index alongside top gainers, losers, and turnover leaders via get_market_summary, and pull paginated transaction-level floorsheet records or multi-day broker aggregations for any symbol.

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 · 6 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 Listings

search_stocks accepts a case-insensitive substring query matched against NEPSE symbols and returns matching entries with their symbol, company_name, and id. Company names are resolved for up to the top 5 results; the rest return null for company_name. get_stock_list returns the full universe of ~641 listed stocks with close, percentage_change, and volume per symbol — note that name is null in this bulk response; use get_stock_details when you need company names at scale.

Stock Details and Market Summary

get_stock_details takes a single symbol parameter and returns a full snapshot: day OHLC (open, high, low, close), volume, 52-week range, sector, and fundamentals including eps, eps_ttm, bvps, P/E ratio, and market cap. get_market_summary requires no parameters and returns the NEPSE composite index with its own OHLC and point_change, an array of indices for sub-indices, market_stats (turnover, share volume, transaction count, scrips traded), and ranked arrays for top_gainers, top_losers, and top_turnover.

Floorsheet and Broker Analysis

get_floorsheet retrieves individual transaction records for a symbol on a given date (defaults to the latest trading day) with 20 records per page. Each record exposes buyer_broker, seller_broker, quantity, rate, amount, and transaction_time. The response also includes a summary of total transactions, quantity, and amount for the day. get_broker_analysis aggregates those transactions across a start_date/end_date range, returning per-broker buy/sell quantities and amounts sorted by absolute net quantity — useful for identifying accumulation or distribution patterns across brokers over multiple sessions.

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
4d 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 portfolio tracker that polls get_stock_details for live LTP, volume, and EPS across held symbols.
  • Display a daily market dashboard using get_market_summary to show the NEPSE index, sub-indices, and top 10 gainers/losers.
  • Screen undervalued stocks by filtering get_stock_list results and enriching with P/E, BVPS, and market cap from get_stock_details.
  • Analyze broker accumulation over a custom date range using get_broker_analysis to surface net buyers and sellers for a given symbol.
  • Audit individual trades for a session by paginating get_floorsheet and examining buyer/seller broker pairs with transaction times.
  • Implement a symbol autocomplete search bar backed by search_stocks using partial symbol queries like 'NAB' or 'KKH'.
  • Monitor sector rotation by comparing percentage_change across all stocks from get_stock_list grouped by the sector field from get_stock_details.
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 does pagination work?+
get_floorsheet returns individual trade records for a specific symbol and trading date. Each record includes buyer_broker, seller_broker, quantity, rate, amount, and transaction_time. The response is paginated at 20 records per page; use the page parameter to advance through results. The pagination object includes total, total_pages, page, and page_size. Omitting the date parameter returns the most recent available trading day.
Does get_stock_list include company names alongside symbols?+
No — the name field is null in the bulk get_stock_list response. It returns symbol, id, close, percentage_change, and volume for each of the ~641 listed stocks. To retrieve a company name, call get_stock_details with the specific symbol.
Does the API cover historical OHLC time-series data for individual stocks?+
Not currently. The API covers current-day OHLC via get_stock_details, daily floorsheet snapshots via get_floorsheet, and date-range broker aggregations via get_broker_analysis, but does not expose a historical price series endpoint. You can fork this API on Parse and revise it to add a historical OHLC endpoint if that data is available on the source.
Does the API expose data for NEPSE derivatives, mutual funds, or bonds separately?+
The API covers all ~641 symbols listed in the NEPSE scanner, which may include mutual funds and other instrument types accessible via search_stocks or get_stock_list, but there are no dedicated endpoints segmented by instrument type. You can fork this API on Parse and revise it to add instrument-type filtering or dedicated endpoints for derivatives or bond listings.
Page content last updated . Spec covers 6 endpoints from nepalytix.com.
Related APIs in FinanceSee all →
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.
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.
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.
nzx.com API
Access daily stock data including open, high, low, close prices and trading volume for NZX-listed companies. Browse company listings and view detailed instrument information for stocks traded on the New Zealand Exchange.