curl --request GET \
--url 'https://api.benzinga.com/api/v1/api/v1/quoteDelayed?token='{
"quotes": [
{
"security": {
"symbol": "AAPL",
"cik": "320193",
"isin": "US0378331005",
"cusip": "037833100",
"name": "Apple Inc. - Common Stock"
},
"quote": {
"date": "2025-12-30T06:39:25.848-05:00",
"previousClose": 273.76,
"change": -0.88,
"changePercent": -0.32,
"fiftyTwoWeekHigh": 288.62,
"fiftyTwoWeekLow": 169.2101,
"currency": "USD",
"last": 272.88,
"volume": 27899,
"previousCloseDate": "2025-12-29T16:00:00.000-05:00"
}
}
]
}
Get delayed quotes for a list of symbols, ISINs, or CIKs
curl --request GET \
--url 'https://api.benzinga.com/api/v1/api/v1/quoteDelayed?token='{
"quotes": [
{
"security": {
"symbol": "AAPL",
"cik": "320193",
"isin": "US0378331005",
"cusip": "037833100",
"name": "Apple Inc. - Common Stock"
},
"quote": {
"date": "2025-12-30T06:39:25.848-05:00",
"previousClose": 273.76,
"change": -0.88,
"changePercent": -0.32,
"fiftyTwoWeekHigh": 288.62,
"fiftyTwoWeekLow": 169.2101,
"currency": "USD",
"last": 272.88,
"volume": 27899,
"previousCloseDate": "2025-12-29T16:00:00.000-05:00"
}
}
]
}
{
"quotes": [
{
"security": {
"symbol": "AAPL",
"cik": "320193",
"isin": "US0378331005",
"cusip": "037833100",
"name": "Apple Inc. - Common Stock"
},
"quote": {
"date": "2025-12-30T06:39:25.848-05:00",
"previousClose": 273.76,
"change": -0.88,
"changePercent": -0.32,
"fiftyTwoWeekHigh": 288.62,
"fiftyTwoWeekLow": 169.2101,
"currency": "USD",
"last": 272.88,
"volume": 27899,
"previousCloseDate": "2025-12-29T16:00:00.000-05:00"
}
}
]
}
Comma-separated list of stock ticker symbols. At least one of symbols, isin, or cik is required.
Comma-separated list of ISIN identifiers. Maximum 50. At least one of symbols, isin, or cik is required.
Comma-separated list of CIK identifiers. At least one of symbols, isin, or cik is required.
Returns a JSON object with delayed quotes
The response is of type string.
Was this page helpful?