Skip to main content
GET
/
v1
/
stocks
/
earnings-calendar
Get Earnings Calendar Data
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/stocks/earnings-calendar \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "created_at": "<string>",
      "date": "2024-01-25",
      "eps": "<string>",
      "eps_estimated": "<string>",
      "fiscal_date_ending": "<string>",
      "id": 123,
      "revenue": "<string>",
      "revenue_estimated": "<string>",
      "symbol": "<string>",
      "time": "<string>",
      "updated_at": "<string>",
      "updated_from_date": "<string>"
    }
  ],
  "error": {
    "code": "RESOURCE_NOT_FOUND",
    "details": [
      {
        "field": "<string>",
        "got": "<string>",
        "reason": "<string>"
      }
    ],
    "docs_url": "<string>",
    "examples": [
      "<string>"
    ],
    "hint": "<string>",
    "message": "The requested resource was not found.",
    "suggestions": [
      "<string>"
    ]
  },
  "pagination": "<unknown>",
  "request_id": "<string>",
  "success": true
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Example: "your-api-key-here"

Query Parameters

symbol
string

Stock symbol (e.g., AAPL, MSFT) - optional

start_time
integer<int64>

Start time (Unix timestamp) - optional, requires end_time

end_time
integer<int64>

End time (Unix timestamp) - optional, requires start_time

Response

Successfully retrieved earnings calendar data

data
object[]
error
object
pagination
any
request_id
string
success
boolean