# Otcmarkets — 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 quotes and detailed company profiles for over 12,000 OTC securities, plus access market-wide news, compliance badges, and performance screeners to find advancing stocks. Research OTC companies with comprehensive data to make informed investment decisions.

**Category:** Finance & Markets | **Website:** [otcmarkets.com/](https://otcmarkets.com/) | **Docs:** [parse.bot/marketplace/e8ee52b8-6513-4837-aa48-d0b5fc9dc459/otcmarkets-com-api](https://parse.bot/marketplace/e8ee52b8-6513-4837-aa48-d0b5fc9dc459/otcmarkets-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-otcmarkets-com-api-e8ee52b8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_advancers

Get current market advancers (top gainers) for a specific OTC tier group. Returns stocks sorted by percentage change descending. Paginated.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination |
| `page_size` | integer | No | Number of items per page |
| `tier` | string | No | Tier group: QX (OTCQX Best Market), QB (OTCQB Venture Market), DQ (Pink), or ALL (all tiers) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-otcmarkets-com-api-e8ee52b8/get_advancers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>","tier":"<string>"}'
```

### get_company_badges

Get company compliance status and risk badges for an OTC-listed company. Returns boolean flags for shell, bankruptcy, dark, delinquent, caveat emptor, and profile verification.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `symbol` | string | Yes | Stock ticker symbol (e.g., OTCM, GTII) |

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

### get_company_news

Get recent news articles and press releases for an OTC-listed company. Supports pagination via page number. Results sorted by release date descending.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination |
| `page_size` | integer | No | Number of news items per page |
| `symbol` | string | Yes | Stock ticker symbol (e.g., OTCM, AAPL) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-otcmarkets-com-api-e8ee52b8/get_company_news \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>","symbol":"<string>"}'
```

### get_company_profile

Get detailed company profile for an OTC-listed company. Returns business description, contact information, key executives, securities details, and incorporation information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `symbol` | string | Yes | Stock ticker symbol (e.g., OTCM, GTII) |

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

### get_stock_quote

Get real-time and summary stock quote data for an OTC security. Returns price, volume, bid/ask, and key financial ratios. Quote data is delayed 15 minutes.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `symbol` | string | Yes | Stock ticker symbol (e.g., OTCM, GTII) |

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

### list_symbols

Get a full list of all OTC symbols and company names. Returns all listed securities with symbol, company name, venue, and tier ID.

**Estimated cost:** Metered

_No parameters required._

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