ASX APIasx.com.au ↗
Retrieve ASX equity prices, index summaries, company details, market announcements, and IPO listings via a structured JSON API covering all ASX-listed companies.
What is the ASX API?
This API provides 6 endpoints covering live Australian Securities Exchange data, from the S&P/ASX 200 index summary returned by get_market_overview to full company profiles, daily announcements with price-sensitivity flags, a paginated directory of every ASX-listed company, and upcoming IPO and float listings. Response fields span pricing, earnings ratios, director lists, sector classifications, and announcement metadata — all delivered as structured JSON.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/51bd2245-1548-4c04-b3d9-f75abb432b7a/get_market_overview' \ -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 asx-com-au-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: ASX Market Data SDK — bounded, re-runnable; every call capped."""
from parse_apis.asx_market_data_api import ASX, Symbol, ItemsPerPage, CompanyNotFound
client = ASX()
# Get today's market overview — single resource, no iteration needed.
overview = client.marketoverviews.get()
for index in overview.indices:
print(index.name, index.price_last, index.price_change_percent)
# Check top movers — gainers, declines, volume leaders.
prices = client.equitymarketpriceses.get()
for gainer in prices.gainers[:3]:
print(gainer.symbol, gainer.display_name, gainer.last_price, gainer.value)
# Drill into a specific company by ticker symbol.
try:
company = client.companies.get(symbol=Symbol.BHP)
print(company.header.display_name, company.header.price_last, company.header.sector)
if company.key_statistics:
print(company.key_statistics.price_earnings_ratio, company.key_statistics.yield_annual)
if company.about and company.about.directors:
print(company.about.directors[0].name, company.about.directors[0].title)
except CompanyNotFound as exc:
print(f"Company not found: {exc.symbol}")
# List today's announcements — paginated, capped at 5.
for ann in client.announcements.list(limit=5):
print(ann.symbol, ann.headline, ann.is_price_sensitive)
# Browse the company directory — first 3 entries.
listing = client.companylistings.list(items_per_page=ItemsPerPage._10, limit=3).first()
if listing:
print(listing.symbol, listing.display_name, listing.market_cap)
# Check upcoming IPOs/floats.
for upcoming in client.upcominglistings.list(limit=3):
print(upcoming.company_name, upcoming.expected_listing_date)
print("exercised: marketoverviews.get / equitymarketpriceses.get / companies.get / announcements.list / companylistings.list / upcominglistings.list")
Retrieve the ASX homepage market overview including S&P/ASX 200 index summary, market wrap text, and daily video transcript. Returns current index values, a human-readable market summary with HTML formatting, and (when available) the daily market-wrap video ID and transcript lines.
No input parameters required.
{
"type": "object",
"fields": {
"video": "object with daily market wrap video id and transcript array",
"indices": "array of index objects with name, priceLast, priceChange, priceChangePercent",
"showVideo": "boolean indicating whether video is available",
"smartText": "string containing HTML-formatted market summary text"
},
"sample": {
"data": {
"video": {
"id": "P6PEfZO3cp8",
"date": "2026-06-10",
"isWeekly": false,
"transcript": [
"ASX Daily Market Wrap",
"10 June 2026"
]
},
"indices": [
{
"xid": "583954",
"name": "S&P/ASX 200",
"dateAsOf": "2026-06-11T05:19:44.000Z",
"priceLast": 8655.3,
"priceChange": 2,
"priceChangePercent": 0.023
}
],
"showVideo": false,
"smartText": "The <b>S&P/ASX 200</b> is up..."
},
"status": "success"
}
}About the ASX API
Market Data and Equity Prices
get_market_overview returns the current S&P/ASX 200 index level alongside priceChange, priceChangePercent, and a smartText field containing an HTML-formatted market summary. A video object carries the daily market wrap video ID and full transcript when showVideo is true. get_equity_market_prices breaks the session into gainers, declines, and volume arrays, each entry carrying symbol, displayName, lastPrice, and either a percent-change value or a volumeRelative90DPct field comparing today's volume against the 90-day average.
Company Details and Directory
get_company_details accepts a single required symbol parameter (e.g. BHP, CBA) and returns a header object with marketCap, sector, and intraday price fields, plus an about block containing description, a directors array, addressContact, and websiteUrl. The key_statistics object adds isin, earningsPerShare, priceEarningsRatio, yieldAnnual, and full income-statement figures. get_company_directory pages through every listed company — count reports the total — with each item carrying symbol, displayName, industry, dateListed, and marketCap.
Announcements and Upcoming Listings
get_all_market_announcements accepts an optional ISO-format date parameter and a zero-based page integer. Each item in the items array includes symbol, headline, isPriceSensitive, documentKey, and fileSize. The facets object exposes announcementTypes and industries breakdowns, and summaryCounts gives total and price-sensitive tallies for the requested date. get_upcoming_floats_and_listings returns an upcoming_listings array where each entry has company_name and expected_listing_date, providing a forward-looking view of new market entrants.
The ASX API is a managed, monitored endpoint for asx.com.au — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when asx.com.au 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 asx.com.au 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?+
- Screen for the day's top ASX gainers and volume outliers using the
gainersandvolumearrays from get_equity_market_prices. - Build a company research tool that pulls director names, sector, EPS, and P/E ratio from get_company_details for any ASX ticker.
- Monitor price-sensitive announcements in real time by filtering the
isPriceSensitiveflag in get_all_market_announcements. - Populate an ASX company database by iterating the paginated get_company_directory endpoint to capture every listed entity with market cap and listing date.
- Track the IPO pipeline by polling get_upcoming_floats_and_listings for new entries in the
upcoming_listingsarray. - Embed a live S&P/ASX 200 summary widget using the
indices,smartText, andvideofields from get_market_overview. - Aggregate sector-level announcement activity using the
industriesfacet returned by get_all_market_announcements.
| 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.
Does ASX provide an official developer API?+
What does get_all_market_announcements return, and how can I filter by announcement type?+
items array where each announcement carries symbol, headline, date, isPriceSensitive, documentKey, and fileSize. The facets object includes an announcementTypes array and an industries array you can use to understand the composition of results for a given date. Filtering to a specific announcement type is not a built-in input parameter — you would need to filter client-side on the facets or items fields.Can I retrieve historical price data or full time-series charts for ASX stocks?+
priceLast, priceDayHigh, priceDayLow, and priceClose from get_company_details, along with daily movers from get_equity_market_prices. Historical OHLCV time-series data is not exposed. You can fork this API on Parse and revise it to add the missing endpoint.Does get_upcoming_floats_and_listings include prospectus documents or raise amounts?+
company_name and expected_listing_date only. Financial details such as offer price, capital raise amount, or links to prospectus documents are not included in the current response shape. You can fork this API on Parse and revise it to add those fields.How fresh is the data returned by the market endpoints?+
date parameter so you can target a specific trading day — omitting it defaults to the current day.