get_ticker_details
Retrieve detailed financial data for a specific ticker symbol, including exchange information, using the Marketstack MCP Server. Input the symbol to access comprehensive market insights.
Instructions
Obtain information about a specific ticker symbol.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | No | To filter your results based on a specific stock exchange, use this parameter to specify the MIC identification of a stock exchange. Example: `XNAS` | |
symbol | Yes | Obtain information about a specific ticker symbol by attach it to your API request URL, e.g. `AAPL`. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"exchange": {
"description": "To filter your results based on a specific stock exchange, use this parameter to specify the MIC identification of a stock exchange. Example: `XNAS`",
"type": "string"
},
"symbol": {
"description": "Obtain information about a specific ticker symbol by attach it to your API request URL, e.g. `AAPL`.",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}