getEODDataBulk
Retrieve end-of-day stock price data for multiple symbols in bulk, enabling financial analysts, traders, and investors to assess valuations efficiently.
Instructions
The EOD Bulk API allows users to retrieve end-of-day stock price data for multiple symbols in bulk. This API is ideal for financial analysts, traders, and investors who need to assess valuations for a large number of companies.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | Date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"date": {
"description": "Date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}