GETNewPaid only
/v1/earnings-release-timesEarnings Release Times
See the time range in which a company's earnings releases occurred over its most recent three quarters.
⚡ This is a historical release-time range based on the company's most recent three quarters, not a guaranteed time for its next earnings release. The from and to values use 24-hour HH:mm format in the returned timezone.
Request
GET https://api.earningsapi.com/v1/earnings-release-times?symbol=AAPL&apikey=YOUR_API_KEYRequestPython
import requests
response = requests.get("https://api.earningsapi.com/v1/earnings-release-times?symbol=AAPL", params={"apikey": "YOUR_API_KEY"}, timeout=30)
response.raise_for_status()
print(response.json())Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Stock ticker symbol (e.g., "AAPL") |
Response fields
| Field | Type | Description |
|---|---|---|
symbol | string | Stock ticker symbol |
from | string | Start of the historical range in which releases occurred over the most recent three quarters, in 24-hour HH:mm format |
to | string | End of the historical range in which releases occurred over the most recent three quarters, in 24-hour HH:mm format |
timezone | string | IANA timezone for the from and to values (e.g., America/New_York) |
Response example
JSON response
{
"symbol": "AAPL",
"from": "16:30",
"to": "16:40",
"timezone": "America/New_York"
}