# Au Finance Yahoo — 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.

> Get real-time stock quotes, historical price data, and market activity for stocks on Yahoo Finance Australia. Access the most active stocks by region and retrieve detailed metrics — including price, volume, and market cap — to support investment research and analysis.

**Category:** Finance & Markets | **Website:** [au.finance.yahoo.com/](https://au.finance.yahoo.com/) | **Docs:** [parse.bot/marketplace/ef9f2542-f090-402d-b836-952cbed50a6c/au-finance-yahoo-com-api](https://parse.bot/marketplace/ef9f2542-f090-402d-b836-952cbed50a6c/au-finance-yahoo-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-au-finance-yahoo-com-api-ef9f2542/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_historical_data

Get historical daily closing price data for a specific stock symbol for the last month. Returns an array of date/close pairs ordered chronologically. Supports any Yahoo Finance symbol including exchange suffixes.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `symbol` | string | Yes | Stock symbol (e.g. NVDA, CBA.AX). |

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

### get_most_active_stocks

Get a list of most active stocks in a specified region. Returns stock symbols, names, prices, and percentage changes. The region parameter selects the market (AU for Australia, US for United States). Results are ordered by trading volume descending.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `count` | integer | No | Number of stocks to return. |
| `region` | string | No | Market region code. Accepted values: AU (Australia), US (United States). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-au-finance-yahoo-com-api-ef9f2542/get_most_active_stocks \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"count":"<integer>","region":"<string>"}'
```

### get_stock_quote

Get the current market quote and essential metrics for a specific stock symbol. Returns price, change, volume, market cap, and 52-week range. Supports any Yahoo Finance symbol including exchange suffixes (e.g. CBA.AX for ASX-listed stocks).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `symbol` | string | Yes | Stock symbol (e.g. NVDA, CBA.AX, TSLA). |

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