Skip to main content
GET
/
api
/
v1
/
quoteDelayed
Get delayed quotes V1
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"
      }
    }
  ]
}

Authorizations

token
string
query
required

Query Parameters

symbols
string

Comma-separated list of stock ticker symbols. At least one of symbols, isin, or cik is required.

isin
string

Comma-separated list of ISIN identifiers. Maximum 50. At least one of symbols, isin, or cik is required.

cik
string

Comma-separated list of CIK identifiers. At least one of symbols, isin, or cik is required.

Response

Returns a JSON object with delayed quotes

The response is of type string.