# Get stock price Fetch the latest price and associated exchange details for a given stock symbol. Intended for quick lookups used in dashboards or device displays. Endpoint: GET /get/stock-price/{Symbol} Version: 1.0.0 Security: ApiKeyAuth ## Header parameters: - `Accept` (string) Content type accepted by the client. Must be application/json. Some clients set this automatically; include explicitly for strict gateways.Defaults to application/json if not provided. Enum: "application/json" ## Path parameters: - `Symbol` (string, required) Stock symbol to fetch price for. Symbols are case-insensitive alphanumeric strings used by the upstream provider. Example: "IBM" ## Response 200 fields (application/json): - `status` (string, required) Result indicator. success for successful retrieval. Example: "success" - `message` (string, required) Human-readable message describing the result. Example: "Stock price fetched successfully" - `data` (object, required) Stock information container. - `data.stockName` (string, required) Display name of the stock. Example: "BSE Ltd" - `data.stockPrice` (string, required) Price string formatted with optional commas and up to 2 decimals. Example: "2,162.50" - `data.stockExchangeName` (string, required) Exchange name or code returned by the provider. Example: "BSE:National Stock Exchange of India" ## Response 400 fields (application/json): - `status` (string, required) Indicates failure. Always error in this schema. Example: "error" - `message` (string, required) Detailed explanation of the error to help clients fix the request. Example: "Invalid request parameters" ## Response 401 fields