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

# Cotización diferida

> quoteDelayed()

[\< ATRÁS](/es/sdks/languages/java#quotedelayed)

<div id="overview">
  ## Descripción general
</div>

<div id="available-operations">
  ### Operaciones disponibles
</div>

* [get](#get) - Obtener cotizaciones diferidas v2

<div id="get">
  ## get
</div>

Obtener cotizaciones en diferido para una lista de símbolos

<div id="example-usage">
  ### Ejemplo de uso
</div>

```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()) {
            // manejar la respuesta
        }
    }
}
```

<div id="parameters">
  ### Parámetros
</div>

| Parámetro | Tipo                | Obligatorio          | Descripción                           |
| --------- | ------------------- | -------------------- | ------------------------------------- |
| `symbols` | *Optional\<String>* | :heavy\_minus\_sign: | Lista de símbolos separados por comas |
| `isin`    | *Optional\<String>* | :heavy\_minus\_sign: | ISIN del valor                        |
| `cik`     | *Optional\<String>* | :heavy\_minus\_sign: | CIK del valor                         |

<div id="response">
  ### Respuesta
</div>

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

<div id="errors">
  ### Errores
</div>

| Tipo de error              | Código de estado | Tipo de contenido |
| -------------------------- | ---------------- | ----------------- |
| models/errors/APIException | 4XX, 5XX         | */*               |
