Introduction
Benzinga APIs
- Introduction
- Newsfeed & Why is it Moving v2
- Calendar
- Data Websocket
- Historical Bar Data
- Delayed Quote
- Company Fundamentals
- Bull vs. Bear
- Analyst Insights
- Conference Call Transcripts
- Government Trades
- Corporate Logos
- Movers
- Newsfeed (Streaming) v1
- SEC Filings
- Signals
- Squawk
- Webhook v1 Test Trigger
- Short Interest
Libraries
GET Delayed Quote
Get the delayed quotes.
curl --request GET \
--url https://api.benzinga.com/api/v2/quoteDelayed
{
"quotes": [
{
"security": {
"symbol": "string",
"cik": "string",
"valoren": "string",
"name": "string"
},
"quote": {
"date": "string",
"open": "number (float)",
"high": "number (float)",
"low": "number (float)",
"close": "number (float)",
"previousClose": "number (float)",
"change": "number (float)",
"changePercent": "number (float)",
"fiftyTwoWeekHigh": "number (float)",
"fiftyTwoWeekLow": "number (float)",
"currency": "string",
"last": "number (float)",
"tradingHalted": "boolean",
"volume": "integer (int64)",
"previousCloseDate": "string"
}
}
]
}
{
"quotes": [
{
"security": {
"symbol": "string",
"cik": "string",
"valoren": "string",
"name": "string"
},
"quote": {
"date": "string",
"open": "number (float)",
"high": "number (float)",
"low": "number (float)",
"close": "number (float)",
"previousClose": "number (float)",
"change": "number (float)",
"changePercent": "number (float)",
"fiftyTwoWeekHigh": "number (float)",
"fiftyTwoWeekLow": "number (float)",
"currency": "string",
"last": "number (float)",
"tradingHalted": "boolean",
"volume": "integer (int64)",
"previousCloseDate": "string"
}
}
]
}
Authorizations
Headers
Specify return format.
application/json
, application/xml (deprecated)
Query Parameters
One or more comma separated symbols to specify companies to get data for.
One or more comma separated isin symbols to specify companies to get data for.
One or more comma separated cik identifiers to specify companies to get data for.
Response
Date and time of current trading day. UTC.
Price at same day market open
Indicator of highest price of security for same day
Indicator of lowest price of security for same day
Price at same day close. Only available after market close.
Price at the close of previous trading day
Change in price of security
Percentage of change in price of security
Highest price of security in previous fifty two weeks
Lowest price of security in previous fifty two weeks
Type of currency the security is priced
Price of last open
Indicator if trade was halted on security
Measurement of trading activity
Date of previous close for exchange. UTC.
Was this page helpful?
curl --request GET \
--url https://api.benzinga.com/api/v2/quoteDelayed
{
"quotes": [
{
"security": {
"symbol": "string",
"cik": "string",
"valoren": "string",
"name": "string"
},
"quote": {
"date": "string",
"open": "number (float)",
"high": "number (float)",
"low": "number (float)",
"close": "number (float)",
"previousClose": "number (float)",
"change": "number (float)",
"changePercent": "number (float)",
"fiftyTwoWeekHigh": "number (float)",
"fiftyTwoWeekLow": "number (float)",
"currency": "string",
"last": "number (float)",
"tradingHalted": "boolean",
"volume": "integer (int64)",
"previousCloseDate": "string"
}
}
]
}