GET/v1/earnings-movers

Earnings Movers

Get earnings movers for a date, measured on the first trading day after the earnings announcement and filtered to moves of 5% or more up or down.

Historical access

Free plans can access the most recent 24 months of historical data. Pro plans can access all available history.

⚡ The date parameter is the trading date being measured. Results are based on the first trading day after each stock's earnings announcement.

Request

GET https://api.earningsapi.com/v1/earnings-movers?date=2026-06-05&apikey=YOUR_API_KEY
RequestPython
import requests

response = requests.get("https://api.earningsapi.com/v1/earnings-movers?date=2026-06-05", params={"apikey": "YOUR_API_KEY"}, timeout=30)
response.raise_for_status()
print(response.json())

Query parameters

NameTypeRequiredDescription
datestringYesTrading date in YYYY-MM-DD format (e.g., "2026-06-05")

Response fields

FieldTypeDescription
datestringRequested trading date in YYYY-MM-DD format
dataarrayList of earnings movers measured on the first trading day after the earnings announcement
symbolstringTicker symbol for each mover
priceChangenumberPrice change percentage on the measured trading date
closenumberClosing price on the measured trading date
volumenumberTrading volume on the measured trading date

Response example

JSON response
{
  "date": "2026-06-05",
  "data": [
    {
      "symbol": "BBCP",
      "priceChange": 30.7018,
      "close": 10.43,
      "volume": 4419201
    },
    {
      "symbol": "PL",
      "priceChange": -25.9821,
      "close": 32.22,
      "volume": 40838303
    },
    {
      "symbol": "ZUMZ",
      "priceChange": -25.937,
      "close": 17.39,
      "volume": 1294805
    }
  ]
}

Quota and limits

Compare plan limits and historical data access.

Free

  • 60 requests / minute
  • 100 requests / day
  • 1,000 requests / month
  • The most recent 24 months of historical data on supported endpoints

Pro

  • 300 requests / minute
  • Unlimited daily requests
  • Unlimited monthly requests
  • All available history on supported endpoints

Free daily and monthly quotas reset in New York time. Historical access applies to endpoints marked Historical access.

View usage and plans