Discover/Jett API
live

Jett APIapp.jett.uz

Access Uzbekistan stock exchange data via the Jett.uz API: stock listings, company financials, live order books, and historical OHLCV candles for listed equities.

Endpoint health
verified 6d ago
list_stocks
get_stock_details
get_orderbook
get_stock_candles
4/4 passing latest checkself-healing
Endpoints
4
Updated
20d ago

What is the Jett API?

This API provides 4 endpoints covering the Uzbekistan stock market as listed on Jett.uz, including real-time order book depth, OHLCV candlestick history, and company financials. The list_stocks endpoint returns paginated results across all listed equities and bonds with current price, market cap, and sector filtering. The get_stock_details endpoint goes deeper, exposing quarterly financial statements, valuation multiples, and dividend history for individual securities.

This call costs1 credit / call— charged only on success
Try it
Number of results per page (max 50).
Search query to filter by ticker or company name.
Category/sector ID to filter by. Values: 1 (Finance), 2 (Insurance), 3 (Energy), 4 (Industry), 5 (Others), 6 (Construction), 7 (Agriculture), 8 (Lease), 9 (Communications and IT), 10 (Transportation), 11 (Funds).
Pagination offset (number of records to skip).
Time period for volume/growth metrics.
Field to sort results by. Accepted values: gross_trade_amount, value, volume_today, growth_prcnt_today, market_cap, trades_today.
Sort order.
Market/paper type code to filter by.
api.parse.bot/scraper/ef782952-f945-417d-a098-eb98de344a18/<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/ef782952-f945-417d-a098-eb98de344a18/list_stocks?limit=10&offset=0&period=today&sort_by=gross_trade_amount&order_by=asc&market_code=STK' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalmissing one? ·

Search and list stocks and bonds on the Uzbekistan stock exchange. Returns paginated results with current price, volume, growth percentages, and market cap.

Input
ParamTypeDescription
limitintegerNumber of results per page (max 50).
querystringSearch query to filter by ticker or company name.
cat_idstringCategory/sector ID to filter by. Values: 1 (Finance), 2 (Insurance), 3 (Energy), 4 (Industry), 5 (Others), 6 (Construction), 7 (Agriculture), 8 (Lease), 9 (Communications and IT), 10 (Transportation), 11 (Funds).
offsetintegerPagination offset (number of records to skip).
periodstringTime period for volume/growth metrics.
sort_bystringField to sort results by. Accepted values: gross_trade_amount, value, volume_today, growth_prcnt_today, market_cap, trades_today.
order_bystringSort order.
market_codestringMarket/paper type code to filter by.
Response
{
  "type": "object",
  "fields": {
    "stats": "object containing total_records, total_pages, limit, page",
    "stocks": "array of stock objects with pricing, volume, and growth data"
  },
  "sample": {
    "stats": {
      "page": 1,
      "limit": 5,
      "total_pages": 170,
      "total_records": 848
    },
    "stocks": [
      {
        "value": 5.66,
        "active": 1,
        "cat_id": 11,
        "ticker": "UZNF",
        "stock_id": 997,
        "issue_code": "UZ7058980010",
        "issue_name": "UzNIF",
        "market_cap": 28607.13,
        "market_code": "STK",
        "trades_today": 385,
        "volume_today": 271460850,
        "nominal_price": 5,
        "gross_trade_amount": 1520480675.96,
        "growth_prcnt_today": 0
      }
    ]
  }
}

About the Jett API

Stock Listings and Filtering

The list_stocks endpoint returns a paginated array of Uzbekistan-listed stocks and bonds. Each result includes current price, trading volume, growth percentages, and market cap. You can filter by cat_id to target a specific sector — valid values map to Finance (1), Insurance (2), Energy (3), Industry (4), and Others (5/6). Results can be sorted by fields like gross_trade_amount, growth_prcnt_today, or market_cap using the sort_by and order_by parameters. The stats object in the response reports total_records, total_pages, and current page for pagination control.

Company Details and Financials

The get_stock_details endpoint accepts a numeric stock_id (obtainable from list_stocks) and returns a stock object with company profile data, financial indicators broken down by quarter and year (revenue, profit, equity, assets, liabilities), valuation multiples (PE, PB, PS, DE, ROA, ROE), dividend history, free float data, and stock split history. A separate ticker object carries current trading data alongside last-month and last-year performance comparisons.

Order Book and Candles

The get_orderbook endpoint returns up to 10 price levels on each side of the book, with volume, order count, and percentage data per level. Session-level fields include open, high, low, last, volume, ask_volume, and bid_volume. The get_stock_candles endpoint returns historical OHLCV data in chronological order. You can scope the range using the to Unix timestamp and limit (up to 300 candles), and select the candle interval to match your charting needs.

Reliability & maintenanceVerified

The Jett API is a managed, monitored endpoint for app.jett.uz — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when app.jett.uz 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 app.jett.uz 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
6d ago
Latest check
4/4 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
  • Screening Uzbekistan-listed equities by sector using cat_id and sorting by growth_prcnt_today
  • Building a company fundamental dashboard using PE, PB, ROE, and quarterly revenue from get_stock_details
  • Rendering live bid/ask depth charts using order book price levels from get_orderbook
  • Back-testing trading strategies against historical OHLCV data from get_stock_candles
  • Tracking dividend history and free float changes for long-term portfolio analysis
  • Monitoring session highs, lows, and last-traded prices across multiple stocks
  • Comparing market cap and volume across sectors to identify liquidity concentrations
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 Jett.uz offer an official public developer API?+
Jett.uz does not publish a documented public developer API. This Parse API provides structured programmatic access to the data available on app.jett.uz.
What does `get_stock_details` return beyond basic price data?+
It returns a stock object containing quarterly and annual financial indicators (revenue, profit, equity, total assets, liabilities), valuation multiples (PE, PB, PS, DE, ROA, ROE), dividend history, free float records, and stock split events. The ticker object carries current trading figures plus last-month and last-year stats.
What is the maximum number of candles I can retrieve per request?+
The get_stock_candles endpoint returns up to 300 candles per request. You can shift the time window backward using the to parameter (Unix timestamp in seconds) to retrieve older data in successive calls.
Does the API cover intraday trade-by-trade tick data or only candles?+
The API currently covers OHLCV candles via get_stock_candles and snapshot order book depth via get_orderbook. Individual trade-level tick data is not exposed. You can fork this API on Parse and revise it to add a trades or time-and-sales endpoint if that granularity is available on the source.
Are bonds and other instrument types covered, or only equities?+
list_stocks returns both stocks and bonds listed on the Uzbekistan exchange. The market_code parameter can be used to filter by paper type. Coverage is limited to instruments listed on Jett.uz — instruments traded on other Uzbek exchanges or OTC are not currently included. You can fork the API on Parse and revise it to add coverage from additional sources.
Page content last updated . Spec covers 4 endpoints from app.jett.uz.
Related APIs in FinanceSee all →
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.
new.openinfo.uz API
Access data from new.openinfo.uz.
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.
kurzy.cz API
Track Czech and international stock quotes, exchange rates, commodities, and cryptocurrencies with real-time financial data from Kurzy.cz. Search for stocks, view dividend information, and stay updated with the latest financial news all in one place.
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.
idx.co.id API
Access real-time and historical data from the Indonesia Stock Exchange (IDX). Retrieve stock listings, daily trading summaries, market indices, company profiles, financial and annual reports, corporate event calendars, announcements, IPO data, and market overviews.
app.getmidas.com API
Monitor real-time stock prices, trading volumes, and fundamental indicators for BIST-listed companies to make informed investment decisions. Track live market data and compare key metrics across Turkish stocks all in one place.
wap.eastmoney.com API
Access real-time stock quotes, historical K-line charts at 1-minute intervals, and tick data for Chinese securities markets and beyond. Search specific securities, retrieve sector performance, view order books, and pull comprehensive stock lists to power your financial analysis and trading applications.