Skip to main content

Overview

Buildmarkets offers two price data endpoints for equities: “a real-time quote endpoint delivering live bid/ask/last data from the market feed, and a historical endpoint returning end-of-day OHLCV bars over any date range.”

Real-Time Quotes

Endpoint: GET /v1/marketdata/real-time/{symbol} Returns live quotes sourced from QuoteMedia, including bid, ask, last trade price, volume, and change data. The service operates “during regular U.S. market hours (9:30 AM – 4:00 PM ET, Monday–Friday, excluding market holidays).” Path Parameters:
  • symbol (string, required) – Ticker symbol
Response Fields:
  • symbol, last, bid, ask, bid_size, ask_size, volume, change, change_percent, previous_close, open, high, low, timestamp
Example:
curl https://api.tappengine.com/v1/marketdata/real-time/AAPL \
  -H "Authorization: Bearer $BUILDMARKETS_API_KEY"

Historical Prices

Endpoint: GET /v1/marketdata/historical/{symbol} Provides end-of-day OHLCV bars spanning multiple years for most U.S.-listed equities. Path Parameters:
  • symbol (string, required)
Query Parameters:
  • startDate (YYYY-MM-DD, optional) – Defaults to 1 year prior
  • endDate (YYYY-MM-DD, optional) – Defaults to today
Response Fields:
  • date, open, high, low, close, adj_close, volume
Use adj_close for calculations, as “it accounts for stock splits and dividend distributions, making the series historically consistent.”

Common Errors

StatusErrorCause
400INVALID_SYMBOLUnrecognized symbol
400INVALID_DATE_RANGEMalformed dates or reversed range
404SYMBOL_NOT_FOUNDNo data available
429RATE_LIMIT_EXCEEDEDExcessive requests

Company Profile & Fundamentals

Overview

Buildmarkets provides two key endpoints for accessing company-level financial data. The company profile endpoint delivers “high-level descriptive and valuation data,” while the balance sheet endpoint surfaces “structured financial statements.”

Available Endpoints

Two primary routes are offered:
  1. GET /v1/marketdata/company-profile/{symbol} — Returns company overview, valuation metrics, and sector classification
  2. GET /v1/marketdata/balance-sheet/{symbol} — Delivers annual or quarterly financial statements

Company Profile Endpoint

This endpoint returns “a rich snapshot of a company — its business description, sector and industry classification, key valuation ratios, market capitalization, and exchange listing information.” Required parameter: symbol (ticker, e.g., AAPL, NVDA) Key response fields include:
  • Company name, description, and exchange listing
  • Sector and industry classification
  • Market capitalization and valuation ratios (P/E ratio, EPS, dividend yield)
  • 52-week price range, average volume, and shares outstanding
  • Country, website, CEO name, and employee count

Balance Sheet Endpoint

This endpoint provides “structured financial statements for a symbol — balance sheet, income statement, and cash flow data — in either annual or quarterly form.” Path parameter: Ticker symbol or *CUSIP/*ISIN identifier Query options:
  • statementType: Choose annual or quarterly (default: annual)
  • numberOfReports: Specify number of periods (default: 5)
Response includes: Period labels, dates, assets, liabilities, equity, revenue, net income, operating income, gross profit, debt, cash, free cash flow, and diluted EPS.

Common Errors

Possible error responses range from 400 INVALID_SYMBOL to 404 SYMBOL_NOT_FOUND and 404 NO_FINANCIAL_DATA.

News, Dividends & Logos

Three companion endpoints round out Buildmarkets’s per-symbol market data surface: news for surfacing relevant articles and corporate actions, cash dividends for historical distribution records, and logos for company brand images. These are especially useful for building rich stock detail pages and notification feeds.

Endpoints

MethodPathDescription
GET/v1/marketdata/news/{symbol}News articles and corporate actions for a symbol
GET/v1/marketdata/cash-dividends/{symbol}Dividend history with ex-dates and amounts
GET/v1/marketdata/logos/{symbol}Company logo image

News & corporate actions

Returns a list of news articles and corporate action events linked to a specific symbol. Items are returned in reverse chronological order (most recent first). Use the limit parameter to control how many items you retrieve.

GET /v1/marketdata/news/{symbol}

Path parameters
ParameterTypeRequiredDescription
symbolstringTicker symbol (e.g., AAPL)
Query parameters
ParameterTypeRequiredDefaultDescription
limitinteger50Maximum number of items to return
Response fields
FieldTypeDescription
idstringUnique identifier for the news item
typestringItem type: news or corporate_action
headlinestringArticle headline or event title
summarystring | nullBrief summary or description of the article/event
sourcestring | nullPublication or data source (e.g., "Reuters", "SEC Filing")
urlstring | nullLink to the full article (may be null for corporate actions)
published_atstring (ISO 8601)Publication or event timestamp
symbolsarray of stringsTicker symbols this item is tagged to
Example request
curl "https://api.tappengine.com/v1/marketdata/news/AAPL?limit=5" \
  -H "Authorization: Bearer $BUILDMARKETS_API_KEY"
Example response
[
  {
    "id": "nws_a1b2c3d4",
    "type": "news",
    "headline": "Apple Reports Record Q1 Revenue Driven by Services Growth",
    "summary": "Apple Inc. posted quarterly revenue of $124.3 billion, beating analyst expectations, with Services revenue reaching an all-time high.",
    "source": "Reuters",
    "url": "https://reuters.com/technology/apple-q1-results-2026",
    "published_at": "2026-01-30T21:05:00Z",
    "symbols": ["AAPL"]
  },
  {
    "id": "nws_b2c3d4e5",
    "type": "corporate_action",
    "headline": "Apple Inc. — Quarterly Dividend Declaration",
    "summary": "Apple declared a quarterly cash dividend of $0.25 per share, payable February 13, 2026 to shareholders of record as of February 10, 2026.",
    "source": "SEC Filing",
    "url": null,
    "published_at": "2026-01-30T20:00:00Z",
    "symbols": ["AAPL"]
  },
  {
    "id": "nws_c3d4e5f6",
    "type": "news",
    "headline": "Apple Vision Pro 2 Launch Rumored for Q3 2026",
    "summary": "Industry analysts expect Apple to unveil a second-generation Vision Pro headset with improved battery life and a lower price point.",
    "source": "Bloomberg",
    "url": "https://bloomberg.com/technology/apple-vision-pro-2-2026",
    "published_at": "2026-03-18T14:30:00Z",
    "symbols": ["AAPL"]
  }
]

Cash dividends

Returns the dividend payment history for a symbol, including ex-dividend dates, record dates, payment dates, and per-share amounts. Supports date range filtering using excludingFrom and excludingTo. Supports lookup by ticker or by CUSIP/ISIN using the * prefix.

GET /v1/marketdata/cash-dividends/{symbol}

Path parameters
ParameterTypeRequiredDescription
symbolstringTicker (e.g., AAPL) or *CUSIP/*ISIN (e.g., *US0378331005)
Query parameters
ParameterTypeRequiredDescription
excludingFromstring (YYYY-MM-DD)Start of date range filter (ex-dividend date ≥ this value)
excludingTostring (YYYY-MM-DD)End of date range filter (ex-dividend date ≤ this value). Must be used with excludingFrom
Response fields
FieldTypeDescription
symbolstringTicker symbol
dividendsarrayOrdered list of dividend records (most recent first)
dividends[].ex_datestring (YYYY-MM-DD)Ex-dividend date — must hold shares before this date to receive the dividend
dividends[].record_datestring (YYYY-MM-DD)Shareholder record date
dividends[].pay_datestring (YYYY-MM-DD) | nullDate the dividend was or will be paid
dividends[].amountnumberPer-share dividend amount in USD
dividends[].frequencystringPayment frequency: quarterly, annual, monthly, special
dividends[].currencystringCurrency of the dividend (e.g., USD)
Example request — last year of dividends
curl "https://api.tappengine.com/v1/marketdata/cash-dividends/AAPL?excludingFrom=2025-01-01&excludingTo=2025-12-31" \
  -H "Authorization: Bearer $BUILDMARKETS_API_KEY"
Example response
{
  "symbol": "AAPL",
  "dividends": [
    {
      "ex_date": "2025-11-07",
      "record_date": "2025-11-07",
      "pay_date": "2025-11-14",
      "amount": 0.25,
      "frequency": "quarterly",
      "currency": "USD"
    },
    {
      "ex_date": "2025-08-08",
      "record_date": "2025-08-08",
      "pay_date": "2025-08-15",
      "amount": 0.25,
      "frequency": "quarterly",
      "currency": "USD"
    },
    {
      "ex_date": "2025-05-09",
      "record_date": "2025-05-09",
      "pay_date": "2025-05-15",
      "amount": 0.25,
      "frequency": "quarterly",
      "currency": "USD"
    },
    {
      "ex_date": "2025-02-07",
      "record_date": "2025-02-07",
      "pay_date": "2025-02-13",
      "amount": 0.25,
      "frequency": "quarterly",
      "currency": "USD"
    }
  ]
}

Logos

Returns the company logo image for a given symbol. The response provides a URL to a hosted image asset suitable for use directly in <img> tags or as a background image. Logos are provided by QuoteMedia and are updated periodically to reflect rebrands or acquisitions.

GET /v1/marketdata/logos/{symbol}

Path parameters
ParameterTypeRequiredDescription
symbolstringTicker symbol (e.g., AAPL)
Response fields
FieldTypeDescription
symbolstringThe requested ticker symbol
logo_urlstringHTTPS URL to the company’s logo image (PNG or SVG)
widthinteger | nullImage width in pixels (if available)
heightinteger | nullImage height in pixels (if available)
Example request
curl https://api.tappengine.com/v1/marketdata/logos/AAPL \
  -H "Authorization: Bearer $BUILDMARKETS_API_KEY"
Example response
{
  "symbol": "AAPL",
  "logo_url": "https://cdn.quotemedia.com/logos/AAPL.png",
  "width": 200,
  "height": 200
}
Usage tip: Cache logo URLs on your end — they are stable and don’t change frequently. Avoid fetching logos on every page render; retrieve once per symbol and store the URL.

Common errors

HTTP StatusErrorCause
400INVALID_SYMBOLSymbol format is not recognized
400INVALID_DATE_RANGEexcludingTo used without excludingFrom, or dates are malformed
404SYMBOL_NOT_FOUNDNo data found for this symbol
404LOGO_NOT_AVAILABLENo logo is on file for this symbol

Next steps

Updated 3 months ago

Reference Data

The Buildmarkets Reference Data endpoints provide programmatic access to the platform’s complete equity universe. These endpoints enable developers to build search features, sector-based screeners, watchlist browsers, and onboarding flows.

Available Endpoints

Five primary endpoints serve different discovery needs:
  1. Equity Security Master (POST /v1/marketdata/reference/equity-security-master) — Returns paginated listings of all tradeable equities with pagination support via limit and offset parameters.
  2. Symbol Details (POST /v1/marketdata/reference/symbol-details) — Delivers bulk metadata for specific symbols in a single request, useful for watchlist loading.
  3. Sector Symbols (POST /v1/marketdata/reference/sector-symbols) — Retrieves all tradeable symbols within a designated sector.
  4. List Sectors (GET /v1/marketdata/reference/sectors) — Provides all recognized sector names as valid inputs for other endpoints.
  5. List Industries (GET /v1/marketdata/reference/industries) — Returns industry classifications that subdivide sectors for granular filtering.

Key Response Fields

Equity records include symbol, company name, exchange, asset type, CUSIP, ISIN, and tradeable status. The symbol-details response uses a keyed-by-symbol object structure, while list endpoints return arrays.

Error Handling

Common HTTP 400 errors include INVALID_SECTOR (unrecognized sector name), SYMBOLS_REQUIRED (missing symbols array), and TOO_MANY_SYMBOLS (exceeding submission limits). All endpoints require Bearer token authentication and support JSON request bodies to accommodate complex filtering without URL length constraints.