Skip to main content
GET
/
v1
/
stocks
/
screener
/
events
Get Stock Event Screener
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/stocks/screener/events \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "symbol": "<string>",
      "type": "<string>",
      "value": "<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

event_type
string
required

Event type. One of: IPO Date, Split Date, Earnings Date

start_time
integer<int64>
required

Start time (Unix timestamp in seconds). For Split Date and Earnings Date, the date range (end_time - start_time) must not exceed 1 year.

end_time
integer<int64>
required

End time (Unix timestamp in seconds). For Split Date and Earnings Date, the date range (end_time - start_time) must not exceed 1 year.

Response

Successfully retrieved stock events

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