ESC to close

Business Quant API Documentation

Welcome to the official developer portal for the Business Quant API. Access institutional-grade financial statements, granular segment data, SEC filings, insider transactions, and analyst estimates through our high-performance REST infrastructure.

Base URL

All API requests should be directed to the following base URL. Endpoints are accessed exclusively via secure HTTP GET requests, passing your api_key as a URL query parameter.

https://data.businessquant.com

Explore the Endpoints

Select an endpoint below to view its available parameters, authentication requirements, and standard JSON response formats.

Standard Response Architecture

To ensure consistency and ease of programmatic integration, every Business Quant API response follows a strict, predictable JSON schema. The output is always divided into two primary objects:

  • metadata: Contains the contextual parameters of your request. This includes the resolved identifiers (CIK, Tickers), company names, matched modes, and pagination details to help your application process the payload statefully.
  • data: Contains the requested dataset. Depending on the endpoint, this will be formatted as an array of objects (like Peers or Filings) or a nested hierarchical object (like Financial Statements).
Universal Wrapper Structure
{
  "metadata": {
    "ticker": "AAPL",
    "companyname": "Apple Inc.",
    "page": 1,
    "total_records": 150
    // ... contextual variables confirming your query
  },
  "data": [
    // ... the requested dataset array or object
  ]
}