ESC to close

Analyst Estimates

Track forward-looking Wall Street consensus estimates for revenue and EPS across future quarters and years.

GET https://data.businessquant.com/estimates?{identifier}&mode={mode}&api_key={api_key}

Parameters

Track forward-looking Wall Street consensus estimates for revenue and earnings per share (EPS). You must provide an API key and exactly one Identifier (Ticker or CIK). This endpoint provides detailed breakdowns of reported values versus analyst projections, including high, low, and consensus estimates.

Parameter Description
api_key
Required
Your unique API key for authentication.
ticker
Conditional Identifier
Stock Ticker. (Provide either this or cik).
Format: ticker=SPOT
cik
Conditional Identifier
CIK Number. (Provide either this or ticker).
Format: cik=1639920
mode
Optional
Mode: revenue or eps. Default is revenue.
Format: mode=eps
Example cURL Request
curl -X GET "https://data.businessquant.com/estimates?cik=1639920&mode=eps&api_key=YOUR_API_KEY"
Sample Response
{
    "metadata": {
        "cik": 1639920,
        "ticker": "SPOT",
        "companyname": "Spotify Technology S.A.",
        "companyname_short": "Spotify Technology",
        "mode": "eps",
        "metric_display": "eps"
    },
    "data": [
        {
            "dimension": "annual",
            "estimates": [
                {
                    "period": "2021",
                    "sno": 1,
                    "data_type": "reported",
                    "value_estimate": -0.98,
                    "value_reported": -0.2,
                    "high_estimate": -1.06,
                    "low_estimate": -0.9
                },
                {
                    "period": "2022",
                    "sno": 2,
                    "data_type": "reported",
                    "value_estimate": -2.44,
                    "value_reported": -3.14,
                    "high_estimate": -2.62,
                    "low_estimate": -2.26
                },
                {
                    "period": "2023",
                    "sno": 3,
                    "data_type": "reported",
                    "value_estimate": -2.91,
                    "value_reported": -3.01,
                    "high_estimate": -3.03,
                    "low_estimate": -2.79
                },
                {
                    "period": "2024",
                    "sno": 4,
                    "data_type": "reported",
                    "value_estimate": 6.36,
                    "value_reported": 5.69,
                    "high_estimate": 6.75,
                    "low_estimate": 5.97
                },
                {
                    "period": "2025",
                    "sno": 5,
                    "data_type": "reported",
                    "value_estimate": 8.98,
                    "value_reported": 12.34,
                    "high_estimate": 9.36,
                    "low_estimate": 8.6
                },
                ...
            ]
        },
        ...
    ]
}

Endpoint Variations

Below are the distinct ways to formulate your request. You can copy these directly into your application.

1. By Ticker (Revenue Estimates)
https://data.businessquant.com/estimates?ticker=SPOT&mode=revenue&api_key=YOUR_API_KEY
2. By CIK (EPS Estimates)
https://data.businessquant.com/estimates?cik=1639920&mode=eps&api_key=YOUR_API_KEY