Discover/ASX API
live

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.

Endpoint health
verified 23h ago
get_market_overview
get_equity_market_prices
get_all_market_announcements
get_company_directory
get_upcoming_floats_and_listings
6/6 passing latest checkself-healing
Endpoints
6
Updated
22d ago

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.

Try it

No input parameters required.

api.parse.bot/scraper/51bd2245-1548-4c04-b3d9-f75abb432b7a/<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/51bd2245-1548-4c04-b3d9-f75abb432b7a/get_market_overview' \
  -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 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")
All endpoints · 6 totalmissing one? ·

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.

Input

No input parameters required.

Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
23h ago
Latest check
6/6 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
  • Screen for the day's top ASX gainers and volume outliers using the gainers and volume arrays 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 isPriceSensitive flag 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_listings array.
  • Embed a live S&P/ASX 200 summary widget using the indices, smartText, and video fields from get_market_overview.
  • Aggregate sector-level announcement activity using the industries facet returned by get_all_market_announcements.
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 ASX provide an official developer API?+
ASX does not publish a general-purpose public developer API. Market data is available commercially through ASX's licensed data services (asx.com.au/data-and-technology), but these require a commercial agreement. This Parse API gives structured programmatic access without a separate licensing negotiation.
What does get_all_market_announcements return, and how can I filter by announcement type?+
The endpoint returns an 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?+
Not currently. The API covers current-day pricing fields such as 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?+
The endpoint returns 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?+
The market overview and equity price endpoints reflect ASX session data as published on the ASX website. ASX equities trade between 10:00 and 16:10 AEST on business days; data outside those hours will reflect the most recent session close. The announcements endpoint includes a date parameter so you can target a specific trading day — omitting it defaults to the current day.
Page content last updated . Spec covers 6 endpoints from asx.com.au.
Related APIs in FinanceSee all →
marketindex.com.au API
Track ASX stock market data including company information, stock prices, dividends, director transactions, and sector performance. Search for stocks, monitor upcoming dividends, view market announcements, and analyze investment opportunities across the Australian securities exchange.
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.
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.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.
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.
hkex.com.hk API
Access real-time stock quotes, track market indices, view historical charts, and search for securities listed on the Hong Kong Stock Exchange. Stay informed with live company announcements and daily quotation reports to make better trading decisions.
nzx.com API
Access daily stock data including open, high, low, close prices and trading volume for NZX-listed companies. Browse company listings and view detailed instrument information for stocks traded on the New Zealand Exchange.
nyse.com API
nyse.com API