# Yahoo Finance — 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 data from finance.yahoo.com.

**Category:** Finance & Markets | **Website:** [finance.yahoo.com/](https://finance.yahoo.com/) | **Docs:** [parse.bot/marketplace/9d24fafd-a3c0-4941-bb52-fefbe9bed8b7/finance-yahoo-com-api](https://parse.bot/marketplace/9d24fafd-a3c0-4941-bb52-fefbe9bed8b7/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-finance-yahoo-com-api-9d24fafd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_holdings

Retrieve top holdings for an ETF or mutual fund. Returns up to 10 holdings with symbol, company name, and portfolio weight percentage. Only ETFs and mutual funds have holdings data; individual stocks will return an empty list.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ticker` | string | Yes | ETF or mutual fund ticker symbol (e.g. SPY, QQQ, VTI). |

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

### get_stock_stats

Retrieve key financial statistics for a given stock ticker, including valuation measures (PE ratio, PEG, price-to-book), trading data (52-week high/low, volume, moving averages), financial metrics (EPS, margins, ROE), and dividend information. Requires a valid ticker symbol.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `ticker` | string | Yes | Stock ticker symbol (e.g. AAPL, MSFT, GOOGL). |

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

### search_ticker

Full-text search for stock tickers by company name, symbol, or keyword. Returns matching symbols with company name, exchange, type, sector, and industry. Results are auto-iterated.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query — company name, ticker symbol, or keyword. |

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