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.
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.
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'
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")
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.
| Param | Type | Description |
|---|---|---|
| market_type | string | Market segment to query. |
{
"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.
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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- 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
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 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.