# Australian Securities Exchange — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access Australian Securities Exchange (ASX) market data, including equity prices, index summaries, company details, market announcements, and company directory listings. Retrieve upcoming IPO and float information alongside comprehensive data on all ASX-listed companies.

**Category:** Finance & Markets | **Website:** [asx.com.au/](https://asx.com.au/) | **Docs:** [parse.bot/marketplace/e818c372-567d-4da5-8e3e-48b28c8acd67/asx-com-au-api](https://parse.bot/marketplace/e818c372-567d-4da5-8e3e-48b28c8acd67/asx-com-au-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-asx-com-au-api-e818c372/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_market_announcements

Retrieve all market announcements for a specific date or the current day. Returns paginated results with announcement metadata (symbol, headline, date, isPriceSensitive, documentKey, fileSize) and summary counts of total and price-sensitive announcements for that date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Date in ISO format YYYY-MM-DD. Omitting uses the current day. |
| `page` | integer | No | Zero-based page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asx-com-au-api-e818c372/get_all_market_announcements \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","page":"<integer>"}'
```

### get_company_details

Retrieve comprehensive details for a specific ASX-listed company by ticker symbol. Includes pricing header (current price, change, sector, volume, market cap), key statistics (P/E ratio, EPS, yield, income statements), company description, board of directors, and available product types.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `symbol` | string | Yes | ASX ticker symbol (e.g. BHP, CBA, TLS, CSL) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asx-com-au-api-e818c372/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"symbol":"<string>"}'
```

### get_company_directory

Retrieve the full ASX company directory as a paginated alphabetical listing of all ASX-listed companies. Each entry includes symbol, displayName, industry, dateListed, and marketCap. Supports pagination and returns total count of listed companies.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `items_per_page` | integer | No | Number of items per page. |
| `page` | integer | No | Zero-based page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asx-com-au-api-e818c372/get_company_directory \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"items_per_page":"<integer>","page":"<integer>"}'
```

### get_equity_market_prices

Retrieve top performing and declining stocks on the ASX including gainers, decliners, and volume leaders for the current trading day. Each stock entry includes symbol, displayName, lastPrice, and percentage change (value field).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asx-com-au-api-e818c372/get_equity_market_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_market_overview

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asx-com-au-api-e818c372/get_market_overview \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_upcoming_floats_and_listings

Retrieve information about upcoming IPOs, floats, and new listings on the ASX. Returns a list of companies with their expected listing dates and times. Data is scraped from the ASX upcoming listings page.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asx-com-au-api-e818c372/get_upcoming_floats_and_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
