Descripción general
Operaciones disponibles
- getV1 - Obtener cotizaciones diferidas V1
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
quotedelayed()
package hello.world;
import java.lang.Exception;
import org.benzinga.BZClient.Bzclient;
import org.benzinga.BZClient.models.operations.GetQuoteDelayedV1Response;
public class Application {
public static void main(String[] args) throws Exception {
Bzclient sdk = Bzclient.builder()
.apiKeyAuth("<YOUR_API_KEY_HERE>")
.build();
GetQuoteDelayedV1Response res = sdk.quotedelayed().getV1()
.symbols("<value>")
.isin("<value>")
.cik("<value>")
.call();
if (res.string().isPresent()) {
// manejar la respuesta
}
}
}
| 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 |
| Tipo de error | Código de estado | Tipo de contenido |
|---|---|---|
| models/errors/APIException | 4XX, 5XX | / |
Was this page helpful?