Delayed Quote API Reference

Free Trial ➡

Benzinga Delayed Quote REST API

API Endpoint
https://api.benzinga.com/api/v1
Schemes

https, http

Version

1.0

Authentication

token authentication

Type:
apiKey
Name:
token
In:
query

Playground

Endpoints

GET /quoteDelayed

Get the delayed quotes.

Parameters

NameTypeLocationDescription
acceptstring , x ∈ { application/json , application/xml (deprecated) }header

Specify return format.

symbolsstring (csv)query

One or more comma separated symbols to specify companies to get data for.

isinstring (csv)query

One or more comma separated isin symbols to specify companies to get data for.

cikstring (csv)query

One or more comma separated cik identifiers to specify companies to get data for.

Responses

CodeModelDescription
200 OKDelayedQuotesResponse

success

Response (200 OK)

{
  "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"
      }
    }
  ]
}

Models

DelayedQuotesResponse: object

PropertyTypeDescription
quotesobject[]-
quotes[].securityobject-
quotes[].security.symbolstring

Registered symbol of security

quotes[].security.cikstring

Unique identifier of security

quotes[].security.valorenstring

Unique identifier of security

quotes[].security.namestring

Registered name of security

quotes[].quoteobject-
quotes[].quote.datestring

Date and time of current trading day. UTC.

quotes[].quote.opennumber (float)

Price at same day market open

quotes[].quote.highnumber (float)

Indicator of highest price of security for same day

quotes[].quote.lownumber (float)

Indicator of lowest price of security for same day

quotes[].quote.closenumber (float)

Price at same day close. Only available after market close.

quotes[].quote.previousClosenumber (float)

Price at the close of previous trading day

quotes[].quote.changenumber (float)

Change in price of security

quotes[].quote.changePercentnumber (float)

Percentage of change in price of security

quotes[].quote.fiftyTwoWeekHighnumber (float)

Highest price of security in previous fifty two weeks

quotes[].quote.fiftyTwoWeekLownumber (float)

Lowest price of security in previous fifty two weeks

quotes[].quote.currencystring

Type of currency the security is priced

quotes[].quote.lastnumber (float)

Price of last open

quotes[].quote.tradingHaltedboolean

Indicator if trade was halted on security

quotes[].quote.volumeinteger (int64)

Measurement of trading activity

quotes[].quote.previousCloseDatestring

Date of previous close for exchange. UTC.

Structure (JSON)
{
  "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"
      }
    }
  ]
}