> ## Documentation Index
> Fetch the complete documentation index at: https://benzinga.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Quote Delayed

> quoteDelayed()

[\< BACK](/sdks/languages/java#quotedelayed)

## Overview

### Available Operations

* [get](#get) - Get delayed quotes V2

## get

Get delayed quotes for a list of symbols

### Example Usage

```java theme={null}
package hello.world;

import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetQuoteDelayedV2Response;

public class Application {

    public static void main(String[] args) throws Exception {

        Bzclient sdk = Bzclient.builder()
                .apiKeyAuth("<YOUR_API_KEY_HERE>")
            .build();

        GetQuoteDelayedV2Response res = sdk.quoteDelayed().get()
                .symbols("<value>")
                .isin("<value>")
                .cik("<value>")
                .call();

        if (res.string().isPresent()) {
            // handle response
        }
    }
}
```

### Parameters

| Parameter | Type                | Required             | Description                     |
| --------- | ------------------- | -------------------- | ------------------------------- |
| `symbols` | *Optional\<String>* | :heavy\_minus\_sign: | Comma separated list of symbols |
| `isin`    | *Optional\<String>* | :heavy\_minus\_sign: | ISIN of the security            |
| `cik`     | *Optional\<String>* | :heavy\_minus\_sign: | CIK of the security             |

### Response

**[GetQuoteDelayedV2Response](../../models/operations/GetQuoteDelayedV2Response.md)**

### Errors

| Error Type                 | Status Code | Content Type |
| -------------------------- | ----------- | ------------ |
| models/errors/APIException | 4XX, 5XX    | \*/\*        |
