getQuote
Retrieve real-time stock quotes, including price, change, and volume data, using a specific stock symbol for accurate financial analysis.
Instructions
Access real-time stock quotes with the FMP Stock Quote API. Get up-to-the-minute prices, changes, and volume data for individual stocks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Stock symbol |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Stock symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}