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

> Track institutional investment moves by accessing the latest 13F filings, searching for specific investment firms, and viewing current quarter filing statistics. Monitor what major investors are buying and selling in real-time through WhaleWisdom's comprehensive filing database.

**Category:** Finance & Markets | **Website:** [whalewisdom.com/](https://whalewisdom.com/) | **Docs:** [parse.bot/marketplace/843803c1-e9de-4c62-940b-874564e8305d/whalewisdom-com-api](https://parse.bot/marketplace/843803c1-e9de-4c62-940b-874564e8305d/whalewisdom-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-whalewisdom-com-api-843803c1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_filing_quarter_stats

Get statistics about the current 13F filing quarter, including the quarter description, due date, total number of filings imported, and a list of new first-time filers. No parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-whalewisdom-com-api-843803c1/get_filing_quarter_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_latest_filings

Get the most recently filed 13F reports, ordered by import date descending. Returns paginated results showing filer name, filing period, form type, state, and number of stocks in each filing. Each page returns up to rows filings; advance via page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `rows` | integer | No | Number of filings per page, between 1 and 100. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-whalewisdom-com-api-843803c1/get_latest_filings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","rows":"<integer>"}'
```

### search_filers

Search for 13F filers and stocks by name using an autocomplete-style search. Returns matching filers and stocks with their IDs and permalinks. Results are not paginated; the server returns up to approximately 10 matches.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `term` | string | Yes | Search term to match against filer or stock names (e.g. 'Berkshire', 'Bridgewater'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-whalewisdom-com-api-843803c1/search_filers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"term":"<string>"}'
```
