# Quiverquant — 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 quiverquant.com.

**Category:** Finance & Markets | **Website:** [quiverquant.com/](https://quiverquant.com/) | **Docs:** [parse.bot/marketplace/d7288438-961d-4733-be97-e1d8d2c315ef/quiverquant-com-api](https://parse.bot/marketplace/d7288438-961d-4733-be97-e1d8d2c315ef/quiverquant-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-quiverquant-com-api-d7288438/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_congress_trades

Retrieves the most recent U.S. Congress stock trade disclosures from the dashboard. Returns up to 300 trades ordered by filing date descending. Each trade includes the ticker, company name, transaction type, dollar amount range, politician name, chamber, party affiliation, and filing/trading dates.

**Estimated cost:** Metered

_No parameters required._

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

### get_fund_perfs

Retrieves institutional fund performance rankings from 13-F filings. Returns funds sorted by quarterly return performance with fund name, percentage return, number of holdings, assets under management in USD, and reporting date.

**Estimated cost:** Metered

_No parameters required._

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

### get_insider_trades

Retrieves the most recent SEC-filed insider trading transactions from the dashboard. Returns up to 1000 trades including corporate executive purchases and sales with ticker, insider name, title, transaction code, dollar value, share count, price per share, and filing/trading dates.

**Estimated cost:** Metered

_No parameters required._

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

### get_news_feed

Retrieves the latest financial news articles from the Quiver Quantitative news page. Returns articles with headline, full URL path, publication timestamp, and an article excerpt/preview including AI-generated summaries.

**Estimated cost:** Metered

_No parameters required._

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

### get_politician_profile_tabs

Retrieves PAC donor contributions and outside spending supporter/opponent data for a politician by their Bioguide ID. Donors include PAC name, ticker, recipient committee, contribution amount, date, and party. Supporters and opponents include FEC expenditure filings with payee, committee, amount, and description.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `bioguide_id` | string | Yes | Politician Bioguide ID, a letter followed by 6 digits (e.g., P000197, T000278) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quiverquant-com-api-d7288438/get_politician_profile_tabs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"bioguide_id":"<string>"}'
```

### get_politician_trades

Retrieves the full stock trade history for a specific U.S. Congress member identified by their slug (name and Bioguide ID combined). Returns their profile information and all disclosed trades including ticker, transaction type, filing/trading dates, and description text.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Politician slug combining lowercase name and Bioguide ID, hyphen-separated (e.g., nancy-pelosi-P000197, tommy-tuberville-T000278) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quiverquant-com-api-d7288438/get_politician_trades \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```
