StockData · Schema
StockData Quote
Real-time stock quote data from StockData.org.
FinanceFinancial DataStock MarketMarket DataNewsSentiment Analysis
Properties
| Name | Type | Description |
|---|---|---|
| ticker | string | Stock ticker symbol (e.g., AAPL, MSFT). |
| name | string | Company or entity name. |
| exchange_short | string | Short exchange identifier. |
| mic_code | string | Market Identifier Code (MIC) per ISO 10383. |
| currency | string | Trading currency (ISO 4217). |
| price | number | Current trading price. |
| day_high | number | Intraday high price. |
| day_low | number | Intraday low price. |
| day_open | number | Day opening price. |
| 52_week_high | number | 52-week high price. |
| 52_week_low | number | 52-week low price. |
| market_cap | integer | Market capitalization in USD. |
| last_trade_time | string | ISO 8601 timestamp of last trade. |
| is_extended_hours_price | boolean | True if the price reflects extended hours trading. |
| volume | integer | Trading volume for the current session. |
| previous_close_price | number | Previous session closing price. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.stockdata.org/v1/schema/quote",
"title": "StockData Quote",
"description": "Real-time stock quote data from StockData.org.",
"type": "object",
"properties": {
"ticker": {
"type": "string",
"description": "Stock ticker symbol (e.g., AAPL, MSFT).",
"examples": ["AAPL", "MSFT", "TSLA"]
},
"name": {
"type": "string",
"description": "Company or entity name.",
"examples": ["Apple Inc.", "Microsoft Corporation"]
},
"exchange_short": {
"type": "string",
"description": "Short exchange identifier.",
"examples": ["NASDAQ", "NYSE"]
},
"mic_code": {
"type": "string",
"description": "Market Identifier Code (MIC) per ISO 10383.",
"examples": ["XNAS", "XNYS"]
},
"currency": {
"type": "string",
"description": "Trading currency (ISO 4217).",
"examples": ["USD"]
},
"price": {
"type": "number",
"description": "Current trading price.",
"minimum": 0,
"examples": [178.45]
},
"day_high": {
"type": "number",
"description": "Intraday high price.",
"minimum": 0,
"examples": [180.12]
},
"day_low": {
"type": "number",
"description": "Intraday low price.",
"minimum": 0,
"examples": [176.33]
},
"day_open": {
"type": "number",
"description": "Day opening price.",
"minimum": 0,
"examples": [177.50]
},
"52_week_high": {
"type": "number",
"description": "52-week high price.",
"minimum": 0,
"examples": [199.62]
},
"52_week_low": {
"type": "number",
"description": "52-week low price.",
"minimum": 0,
"examples": [124.17]
},
"market_cap": {
"type": "integer",
"description": "Market capitalization in USD.",
"minimum": 0,
"examples": [2780000000000]
},
"last_trade_time": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp of last trade.",
"examples": ["2026-05-02T16:00:00+00:00"]
},
"is_extended_hours_price": {
"type": "boolean",
"description": "True if the price reflects extended hours trading.",
"examples": [false]
},
"volume": {
"type": "integer",
"description": "Trading volume for the current session.",
"minimum": 0,
"examples": [54321000]
},
"previous_close_price": {
"type": "number",
"description": "Previous session closing price.",
"minimum": 0,
"examples": [177.25]
}
},
"required": ["ticker", "price"]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/stockdata-quote"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.