Discover/Uzse API
live

Uzse APIuzse.uz

Access live quotes, intraday trades, company listings, and securities data from the Tashkent Stock Exchange via the uzse.uz API. 5 endpoints.

Endpoint health
verified 3d ago
get_securities
get_stock_detail
get_listings
get_trade_results
get_stock_quotes
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Uzse API?

The uzse.uz API delivers live and historical market data from the Tashkent Stock Exchange across 5 endpoints. Use get_stock_quotes to pull real-time ticker prices, change direction, and recent trade transactions, or use get_stock_detail to retrieve intraday trade history and daily historical closing prices for any individual security identified by ISIN code or ticker symbol.

Try it
Market segment to query.
api.parse.bot/scraper/17b8ba45-4e51-4e32-be43-46c04887b494/<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/17b8ba45-4e51-4e32-be43-46c04887b494/get_securities?market_type=STK' \
  -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 uzse-uz-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: Tashkent Stock Exchange SDK — browse securities, fetch quotes, drill into stock detail."""
from parse_apis.tashkent_stock_exchange_uzse_api import UZSE, MarketType, SecurityNotFound

client = UZSE()

# List stock securities on the exchange, capped at 5.
for sec in client.securities.list(market_type=MarketType.STOCK, limit=5):
    print(sec.ticker, sec.security_code, sec.company_name)

# Get live quotes from the ticker banner.
quote = client.quotes.list(limit=1).first()
if quote:
    print(quote.ticker, quote.closing_price, quote.last_trade_price, quote.last_trade_date)

# Drill into detailed stock data for one security by ticker.
try:
    stock = client.stocks.get(ticker="HMKB")
    print(stock.ticker, stock.max_price, stock.today_volume)
    print(stock.today_change.direction, stock.today_change.value)
    for record in stock.historical_data[:3]:
        print(record.date, record.closing_price, record.change_direction)
except SecurityNotFound as exc:
    print(f"Security not found: {exc}")

# List exchange company listings filtered by name.
for listing in client.listings.list(search="bank", limit=3):
    print(listing.ticker, listing.issuer, listing.category, listing.listing_date)

# Retrieve recent stock trades.
for trade in client.trades.list(market_type=MarketType.STOCK, limit=3):
    print(trade.time, trade.issuer, trade.trade_price, trade.volume)

print("exercised: securities.list / quotes.list / stocks.get / listings.list / trades.list")
All endpoints · 5 totalmissing one? ·

List all securities registered on the exchange. Each security includes its ISIN code, ticker symbol, and company name. Filter by market type to separate stocks from bonds. Returns the full catalog in a single page.

Input
ParamTypeDescription
market_typestringMarket segment to query.
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of securities returned",
    "securities": "array of security objects with security_code, ticker, and company_name",
    "market_type": "string indicating which market was queried"
  },
  "sample": {
    "data": {
      "total": 118,
      "securities": [
        {
          "ticker": "MXUS",
          "company_name": "<93-MAXSUS TREST> Aksiyadorlik jamiyati",
          "security_code": "UZ7012480008"
        },
        {
          "ticker": "AGBA",
          "company_name": "<Agrobank> aksiyadorlik tijorat banki",
          "security_code": "UZ7001560000"
        }
      ],
      "market_type": "STK"
    },
    "status": "success"
  }
}

About the Uzse API

Securities and Listings

get_securities returns the full exchange catalog — every registered security's ISIN code (security_code), ticker, and company_name — with an optional market_type filter to separate equity from bond segments. get_listings provides richer admission-level detail: listing category (Premium, Standard, or Bond), listing_date, currency, nominal_value, and shares_count for each issuer. A search parameter accepts a substring to narrow results by company name.

Quotes and Trade Data

get_stock_quotes returns the live ticker-banner data from the exchange homepage: closing_price, last_trade_price, change_direction, change_value, and last_trade_date for each quoted security, plus a recent_trades array showing time, issuer, security_type, market, platform, trade_price, quantity, and volume for the most visible transactions. For deeper single-security analysis, get_stock_detail accepts either a ticker or security_code and returns today's start_price, max_price, min_price, today_volume, today_quantity, a today_change object, a full intraday trades list, and a historical_data array of daily closing prices with corresponding change_direction, change_value, quantity, and volume.

Trade Results Filtering

get_trade_results exposes all executed transactions with flexible server-side filtering: market_type to scope by segment, date_from and date_to in DD.MM.YYYY format for a date range, and a search substring on issuer name. The response echoes every applied filter alongside the trades array, making it straightforward to audit exactly what query produced a given result set.

Reliability & maintenanceVerified

The Uzse API is a managed, monitored endpoint for uzse.uz — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when uzse.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 uzse.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
3d 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
  • Track daily price movements for Uzbek equities using closing_price and change_value from get_stock_quotes
  • Build a securities screener filtered by market segment using get_securities with the market_type parameter
  • Reconstruct intraday price charts for individual stocks using the trades list from get_stock_detail
  • Monitor exchange listing additions and their nominal values with get_listings filtered by category
  • Run date-range queries on executed trades by issuer name using get_trade_results with date_from, date_to, and search
  • Compare outstanding share counts and nominal values across Premium and Standard listed companies via get_listings
  • Build a historical backtesting dataset from the historical_data array returned by get_stock_detail
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 the Tashkent Stock Exchange provide an official developer API?+
UZSE does not publish a documented public developer API. The uzse.uz API on Parse provides structured programmatic access to the exchange's market data.
What does get_stock_detail return, and do I need both ticker and security_code?+
You only need one identifier — either the ticker symbol (e.g. 'HMKB') or the ISIN security_code (e.g. 'UZ7011340005'). The endpoint returns today's open, high, low, volume, and quantity; a today_change object with direction and value; a full list of intraday trade timestamps and prices; and a historical_data array of daily closing prices with volume and change fields.
How far back does the historical price data in get_stock_detail go?+
The historical_data array reflects the daily closing price history available on the UZSE security detail page. The exact depth depends on how far back the exchange publishes records for each security, and it varies by ticker.
Does the API cover order book depth or bid/ask spread data?+
Not currently. The API covers executed trade data, live quote snapshots, and daily price summaries, but does not expose order book depth or bid/ask levels. You can fork it on Parse and revise to add that endpoint if UZSE exposes that data.
Can I filter get_trade_results to a specific security rather than just an issuer name substring?+
The current filter parameters are market_type, date_from, date_to, and a search substring on issuer name. Filtering by a specific security_code or ticker is not directly supported. You can fork the API on Parse and revise it to add security-level filtering.
Page content last updated . Spec covers 5 endpoints from uzse.uz.
Related APIs in FinanceSee all →
luse.co.zm API
Access real-time market data, index performance, and company information from the Lusaka Securities Exchange, including daily trading data, listed companies and debt instruments, SENS announcements, and the latest financial news. Monitor market trends and stay informed on securities exchange activity across Zambia's capital markets.
sse.com.cn API
Monitor Shanghai Stock Exchange market activity with real-time equity quotes, index performance data, and daily trading statistics. Search for specific securities and view comprehensive market overviews to track stock prices and exchange trends.
ueex.com.ua API
Access real-time and historical pricing data for Ukrainian energy commodities including natural gas, electricity, coal, LPG, and timber directly from official exchange quotations and auction results. Monitor trading indices, check medium long-term market rates, and view the trading calendar to stay informed on energy market trends.
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.
uzum.uz API
Browse and search products across Uzum.uz marketplace categories, view detailed product information with customer reviews, and discover seller profiles and their product listings. Get real-time access to marketplace data including category organization, product details, pricing, and seller ratings all in one place.
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.
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.
boerse-stuttgart.de API
Search Börse Stuttgart securities by name, WKN, or ISIN and retrieve live quotes, detailed instrument pages, index snapshots with constituents, and warrant (Optionsschein) listings for a chosen underlying.
Tashkent Stock Exchange API (uzse) · Parse