get_ticker_info
Fetch detailed information about financial market tickers using Marketstack API. Retrieve data including EOD, intraday, splits, dividends, and exchanges for informed decision-making.
Instructions
Look up information about tickers.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticker | Yes | To get results based on a ticker. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ticker": {
"description": "To get results based on a ticker.",
"type": "string"
}
},
"required": [
"ticker"
],
"type": "object"
}