Discover/OTC Markets API
live

OTC Markets APIotcmarkets.com

Access quotes, company profiles, compliance badges, news, and market screeners for 12,000+ OTC securities via the OTC Markets API.

Endpoint health
verified 7h ago
get_company_profile
get_stock_quote
get_company_badges
get_company_news
get_advancers
6/6 passing latest checkself-healing
Endpoints
6
Updated
22d ago

What is the OTC Markets API?

This API covers over 12,000 OTC-listed securities across six endpoints, returning price quotes, company profiles, compliance badges, news feeds, and market movers. The get_stock_quote endpoint delivers fields like lastSale, bidPrice, askPrice, peRatio, and marketCap with a 15-minute delay, while get_company_badges exposes boolean compliance flags including isCaveatEmptor, isDark, and isDelinquent — signals that are otherwise tedious to collect at scale.

Try it
Stock ticker symbol (e.g., OTCM, GTII)
api.parse.bot/scraper/ad4d4a80-010c-46dc-aa7e-eed4a2b7502b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ad4d4a80-010c-46dc-aa7e-eed4a2b7502b/get_company_profile?symbol=OTCM' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace otcmarkets-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.otc_markets_api import OTCMarkets, Tier

otc = OTCMarkets()

# Fetch a company profile by symbol
company = otc.companies.get(symbol="OTCM")
print(company.name, company.city, company.website)

# Access nested securities
for sec in company.securities:
    print(sec.symbol, sec.tier_name, sec.outstanding_shares)

# Get real-time quote for the company
quote = company.quote()
print(quote.last_sale, quote.percent_change, quote.volume, quote.market_cap)

# Check compliance badges
badges = company.badges()
print(badges.is_shell, badges.is_caveat_emptor, badges.verified_profile)

# Browse company news with auto-pagination
for article in company.news.list(page_size=5, limit=10):
    print(article.title, article.release_date, article.source_description)

# Get top gainers for OTCQB tier
for advancer in otc.advancers.list(tier=Tier.QB, page_size=5, limit=10):
    print(advancer.symbol, advancer.price, advancer.pct_change, advancer.tier_name)

# List all OTC symbols
for entry in otc.symbolentries.list(limit=20):
    print(entry.symbol, entry.company_name, entry.venue)
All endpoints · 6 totalmissing one? ·

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

Input
ParamTypeDescription
symbolrequiredstringStock ticker symbol (e.g., OTCM, GTII)
Response
{
  "type": "object",
  "fields": {
    "name": "string, company name",
    "securities": "array of security objects with symbol, cusip, tierName, outstandingShares",
    "businessDesc": "string, full business description",
    "premierDirectorList": "array of director objects with name, title, biography"
  },
  "sample": {
    "data": {
      "city": "New York",
      "name": "OTC Markets Group Inc.",
      "phone": "+1 (555) 012-3456",
      "state": "NY",
      "country": "United States",
      "website": "http://www.otcmarkets.com",
      "address1": "300 Vesey Street (One North End Ave)",
      "securities": [
        {
          "cusip": "67106F108",
          "symbol": "OTCM",
          "tierName": "OTCQX U.S.",
          "outstandingShares": 12003152
        }
      ],
      "businessDesc": "OTC Markets Group Inc. (OTCQX: OTCM) operates regulated markets for trading 12,000 U.S. and international securities.",
      "premierDirectorList": [
        {
          "name": "John Doe",
          "title": "Chairman",
          "biography": "John Doe is the Chairman of OTC Markets Group Board of Directors."
        }
      ]
    },
    "status": "success"
  }
}

About the OTC Markets API

Quotes and Company Fundamentals

The get_stock_quote endpoint accepts a symbol parameter and returns a snapshot that includes lastSale, previousClose, change, percentChange, volume, bidPrice, askPrice, marketCap, and peRatio. Quote data carries a 15-minute delay. The get_company_profile endpoint returns deeper fundamentals: a full businessDesc, an array of securities objects carrying cusip, tierName, and outstandingShares, plus a premierDirectorList with name, title, and biography fields for each director.

Compliance Badges and Risk Signals

The get_company_badges endpoint maps directly to the compliance indicators OTC Markets publishes for each security. It returns six boolean flags — isShell, isBankrupt, isDark, isDelinquent, isCaveatEmptor, and verifiedProfile — allowing you to filter or flag securities programmatically without scraping individual company pages.

News and Market Movers

get_company_news returns paginated press releases and news items for a given symbol, with each record including title, releaseDate, sourceDesc, and symbol. The page and page_size parameters control pagination; totalRecords and pages fields in the response let you iterate through the full result set. For market-wide screening, get_advancers returns the top gainers filtered by tier (QX, QB, DQ, or ALL), sorted by pctChange descending, with each record including price, shareVolume, and tierName.

Symbol Coverage

The list_symbols endpoint returns a flat array of every listed OTC security with its symbol (s), company name (c), venue (v), and tier ID (t). This is useful for building local lookup tables or validating symbols before calling other endpoints.

Reliability & maintenanceVerified

The OTC Markets API is a managed, monitored endpoint for otcmarkets.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when otcmarkets.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official otcmarkets.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7h ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Screen OTC penny stocks by filtering get_advancers results for the Pink tier (DQ) and sorting by pctChange.
  • Build a compliance dashboard that flags high-risk holdings using isCaveatEmptor, isDark, and isDelinquent from get_company_badges.
  • Track a watchlist's intraday movement by polling get_stock_quote for lastSale, volume, and percentChange.
  • Aggregate executive biography data from premierDirectorList in get_company_profile for corporate governance research.
  • Monitor company press releases by paginating get_company_news with page and page_size and ingesting new releaseDate entries.
  • Enumerate all 12,000+ OTC symbols via list_symbols to seed a securities database or validate ticker inputs.
  • Compare outstandingShares and tierName across multiple securities to study float and market-tier distribution.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does OTC Markets have an official developer API?+
OTC Markets does not publish a general-purpose public developer API. Data access for institutional clients is available through their OTC Markets Data Products program (otcmarkets.com/market-data/data-products), but it is not a self-serve API open to individual developers.
How fresh is the quote data from `get_stock_quote`?+
Quote data returned by get_stock_quote is delayed by 15 minutes. Fields like lastSale, bidPrice, askPrice, and volume reflect this delay. The endpoint is not suitable for latency-sensitive execution workflows, but it is adequate for research, screening, and display use cases.
Does `get_company_badges` explain why a company received the Caveat Emptor designation?+
No. get_company_badges returns boolean flags only — isCaveatEmptor, isDark, isShell, isBankrupt, isDelinquent, and verifiedProfile — without explanatory text or timestamps for when a designation was applied. You can fork this API on Parse and revise it to add an endpoint that retrieves the associated compliance notes if that detail is available on the source.
Can I retrieve historical price data or OHLCV charts through this API?+
Not currently. The API covers real-time-delayed quotes via get_stock_quote and company fundamentals, but does not expose historical OHLCV series or candlestick data. You can fork the API on Parse and revise it to add a historical pricing endpoint.
How does pagination work on `get_company_news` and `get_advancers`?+
Both endpoints accept page and page_size as optional integer parameters. Each response includes currentPage, pages (total page count), and totalRecords, giving you everything needed to iterate through the full result set programmatically.
Page content last updated . Spec covers 6 endpoints from otcmarkets.com.
Related APIs in FinanceSee all →
yahoofinance.com API
Access live stock quotes, historical price data, company profiles, and financial news for any ticker symbol. Supports real-time market data, OHLCV history across configurable intervals, detailed company fundamentals, and news aggregation across global exchanges.
marketbeat.com API
Track comprehensive stock market data including real-time overviews, analyst ratings, earnings reports, insider trades, and institutional ownership across thousands of companies. Search stocks, analyze financial statements and profitability metrics, monitor short interest, explore options chains, and stay updated with market headlines and competitor analysis.
morningstar.com API
Get comprehensive financial data including stock quotes, company profiles, historical financials, valuation metrics, ownership details, dividends, and market movers from Morningstar. Search securities and access the latest stock news to make informed investment decisions.
nasdaq.com API
Track real-time and historical stock prices, ETF and mutual fund quotes, cryptocurrency data, and comprehensive company financials including earnings, dividends, and SEC filings all from one source. Research market trends with institutional holdings, short interest data, retail trading activity, and market movers to make informed investment decisions.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
money.tmx.com API
money.tmx.com API
companiesmarketcap.com API
Track real-time market capitalization and rankings for global companies, search for specific firms, and access detailed financial metrics and historical performance data. Get comprehensive company profiles including current market position and financial trends to compare and analyze investment opportunities.
benzinga.com API
Access real-time stock quotes, company fundamentals, financial news, and analyst ratings all in one place to make informed investment decisions. Track market movements and research companies with up-to-date pricing, ratings, and news coverage.