getBatchQuotesShort
Retrieve concise stock data, including price, change, and volume, for multiple companies in a single API request. Streamline financial analysis with efficient batch processing.
Instructions
Access real-time, short-form quotes for multiple stocks with the FMP Stock Batch Quote Short API. Get a quick snapshot of key stock data such as current price, change, and volume for several companies in one streamlined request.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbols | Yes | Comma-separated list of stock symbols |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbols": {
"description": "Comma-separated list of stock symbols",
"type": "string"
}
},
"required": [
"symbols"
],
"type": "object"
}