asx.com.au 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.
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'
Retrieve the ASX homepage market overview including S&P/ASX 200 index summary, market wrap text, and daily video transcript.
No input parameters required.
{
"type": "object",
"fields": {
"video": "object with daily market wrap video ID and transcript",
"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": "J45e-Bwz2F0",
"date": "2026-05-15",
"isWeekly": false,
"transcript": [
"ASX Daily Market Wrap",
"15 May 2026"
]
},
"indices": [
{
"xid": "583954",
"name": "S&P/ASX 200",
"dateAsOf": "2026-05-15T06:55:44.000Z",
"priceLast": 8630.8,
"priceChange": -9.9,
"priceChangePercent": -0.11
}
],
"showVideo": true,
"smartText": "The <b>S&P/ASX 200</b> <b>closed</b> lower <b>Friday</b>..."
},
"status": "success"
}
}About the asx.com.au 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.
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.
- 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 | 250 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.