EOD Historical Data · Schema
Search Result
Ticker/instrument search result returned by the /search/{query} endpoint
FintechMarket DataStocksETFFundamentalsOptionsForexCryptoMacroeconomicTechnical IndicatorsNewsSentimentHistorical Data
Properties
| Name | Type | Description |
|---|---|---|
| Code | string | Ticker code |
| Exchange | string | Exchange code |
| Name | string | Company or instrument name |
| Type | string | Instrument type (Common Stock, ETF, etc.) |
| Country | string | Country of listing |
| Currency | string | Trading currency |
| ISIN | stringnull | International Securities Identification Number |
| previousClose | numbernull | Previous day's closing price |
| previousCloseDate | stringnull | Date of previous closing price |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://eodhd.com/schemas/search-result",
"title": "Search Result",
"description": "Ticker/instrument search result returned by the /search/{query} endpoint",
"type": "object",
"properties": {
"Code": {
"type": "string",
"description": "Ticker code"
},
"Exchange": {
"type": "string",
"description": "Exchange code"
},
"Name": {
"type": "string",
"description": "Company or instrument name"
},
"Type": {
"type": "string",
"description": "Instrument type (Common Stock, ETF, etc.)"
},
"Country": {
"type": "string",
"description": "Country of listing"
},
"Currency": {
"type": "string",
"description": "Trading currency"
},
"ISIN": {
"type": ["string", "null"],
"description": "International Securities Identification Number"
},
"previousClose": {
"type": ["number", "null"],
"description": "Previous day's closing price"
},
"previousCloseDate": {
"type": ["string", "null"],
"format": "date",
"description": "Date of previous closing price"
}
},
"required": ["Code", "Exchange", "Name", "Type", "Country", "Currency"]
}