# Dilutiontracker — 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 stock dilution events and analyze how company offerings impact share value with access to SEC filings, financial statements, institutional holdings, and market data. Search companies by ticker to get detailed dilution history, pending offerings, and compare performance metrics all in one place.

**Category:** Finance & Markets | **Website:** [dilutiontracker.com/](https://dilutiontracker.com/) | **Docs:** [parse.bot/marketplace/17c8385d-e49c-4707-8b2f-0e241fb22e32/dilutiontracker-com-api](https://parse.bot/marketplace/17c8385d-e49c-4707-8b2f-0e241fb22e32/dilutiontracker-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-dilutiontracker-com-api-17c8385d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_open_access_tickers

Fetch open access tickers available without a subscription. These are tickers with full dilution data access for free users, including symbol, CIK, company name, industry, and the date access was opened.

**Estimated cost:** Metered

_No parameters required._

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

### get_pending_s1_offerings

Fetch pending S-1 offerings.

**Estimated cost:** Metered

_No parameters required._

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

### get_popular_tickers

Fetch popular tickers currently trending on the platform, sorted by activity. Returns up to 30 tickers with market data including sector, industry, and percentage change since last close.

**Estimated cost:** Metered

_No parameters required._

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

### get_reverse_splits

Fetch upcoming and completed reverse splits.

**Estimated cost:** Metered

_No parameters required._

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

### search_tickers

Search for tickers by symbol or company name substring. Searches against the DilutionTracker coverage database (approximately 3400 small/mid-cap tickers focused on dilution events). Results are case-insensitive substring matches.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. |
| `query` | string | Yes | Search query - ticker symbol or company name substring (case-insensitive). Matches against the dilution tracker coverage database which focuses on small/mid-cap stocks. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dilutiontracker-com-api-17c8385d/search_tickers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```
