# ASX — 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.

> Search and retrieve annual reports and company earnings reports from the Australian Securities Exchange, accessing key details like company codes, filing dates, document types, and direct links to PDF documents. Quickly find specific ASX filings to monitor company disclosures and financial announcements.

**Category:** Finance & Markets | **Website:** [asx.com/](https://asx.com/) | **Docs:** [parse.bot/marketplace/41ad5c18-f283-475f-834b-757ab1c8e2cf/asx-com-api](https://parse.bot/marketplace/41ad5c18-f283-475f-834b-757ab1c8e2cf/asx-com-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-api-41ad5c18/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_announcements

Search ASX market announcements filtered by report type (annual report or half-yearly/earnings report), company code, and date range. Returns paginated results ordered by most recent filing date. Each result includes the announcement title, company code, filing date, document type classification, and a direct URL to the PDF document. When no company_code is provided, returns announcements across all listed companies. When no report_type is specified, returns both annual reports and half-yearly reports. Pagination is controlled by page and page_size parameters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_code` | string | No | ASX company ticker code (e.g. BHP, CBA, RIO). Filters results to a single company. When omitted, returns announcements for all companies. |
| `end_date` | string | No | End of date range filter in ISO format YYYY-MM-DD. |
| `page` | integer | No | Page number for pagination (1-indexed). |
| `page_size` | integer | No | Number of results per page. Maximum 100. |
| `report_type` | string | No | Type of report to search for. When omitted, returns both annual reports and half-yearly reports. |
| `start_date` | string | No | Start of date range filter in ISO format YYYY-MM-DD. The ASX archive covers approximately the last 20 years of filings. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-asx-com-api-41ad5c18/search_announcements \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_code":"<string>","end_date":"<string>","page":"<integer>","page_size":"<integer>","report_type":"<string>","start_date":"<string>"}'
```
