get_exchange_details
Retrieve detailed information about a specific stock exchange using its MIC identifier. Ideal for accessing key financial market data through the Marketstack MCP Server.
Instructions
Obtain information about a specific stock exchange.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mic | Yes | Obtain information about a specific stock exchange by attaching its MIC identification to your API request URL, e.g. `XNAS`. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"mic": {
"description": "Obtain information about a specific stock exchange by attaching its MIC identification to your API request URL, e.g. `XNAS`.",
"type": "string"
}
},
"required": [
"mic"
],
"type": "object"
}