La API de acciones es un servicio RESTful de versión 1 (v1
) diseñado para proporcionar acceso programático a datos históricos del mercado de valores. Como se detalla en la especificación OpenAPI 3.0.1. Principalmente entrega datos en formato JSON, aunque algunos endpoints ofrecen alternativas de text/plain
o text/json
. El acceso a los endpoints de la API requiere autenticación utilizando una clave de API proporcionada en el encabezado de Authorization
. La API ofrece una gama de funcionalidades, clasificadas en la recuperación de datos de series temporales OHLCV agregados, el acceso a metadatos sobre intercambios y símbolos, y la consulta de datos históricos nativos altamente granulares de la bolsa IEX.
Una de las funciones principales de esta API es proporcionar datos históricos de Apertura, Máximo, Mínimo, Cierre y Volumen (OHLCV), comúnmente utilizados para la elaboración de gráficos, informes y análisis general del mercado.
Los usuarios pueden obtener datos históricos OHLCV de varias formas:
/v1/ohlcv/exchange-symbol/{exchange_id}/{symbol_id}/history
. exchange_id
y symbol_id
son parámetros de ruta, obtenibles desde los endpoints de metadatos./v1/ohlcv/exchange/{exchange_id}/history
./v1/ohlcv/exchange-symbol/{exchange_id}/{symbol_id}/latest
, que actúa como un acceso directo al endpoint histórico. Nota que estos datos "más recientes" pueden tener un ligero retraso en comparación con las transmisiones en tiempo real.Estos endpoints requieren el parámetro de consulta period_id
para especificar el intervalo de tiempo. Los parámetros opcionales incluyen time_start
y time_end
(en formato ISO 8601) para definir el rango de fechas, y limit
para especificar el número máximo de puntos de datos a devolver (predeterminado 100, máximo 100,000). Los datos históricos se devuelven en orden ascendente de tiempo.
Cada elemento de la serie temporal devuelto incluye:
time_period_start
y time_period_end
(marca de tiempo ISO 8601)time_open
y time_close
(marca de tiempo ISO 8601, nullable)price_open
, price_high
, price_low
, price_close
(doble, nullable)volume_traded
(doble)trades_count
(entero)symbol_id_exchange
.La API admite una amplia variedad de períodos de tiempo para la agregación OHLCV. Estos se pueden consultar a través del endpoint /v1/ohlcv/periods
. Las unidades admitidas incluyen Segundos (1SEC
a 30SEC
), Minutos (1MIN
a 30MIN
), Horas (1HRS
a 12HRS
), Días (1DAY
a 10DAY
), Meses (1MTH
a 6MTH
), y Años (1YRS
a 5YRS
). La respuesta detalla period_id
, length_seconds
, length_months
, unit_count
, unit_name
, y display_name
para cada período soportado.
Para facilitar el descubrimiento de datos, la API proporciona endpoints para recuperar metadatos sobre intercambios y símbolos soportados.
/v1/exchanges
lista todos los intercambios disponibles. La respuesta incluye detalles para cada intercambio como exchange_id
, mic
, operating_mic
, market_name_institution_description
, legal_entity_name
, acronym
, iso_country_code
, city
, website
, y status
./v1/symbols/{exchange_id}
lista todos los símbolos disponibles negociados en ese intercambio. La respuesta para cada símbolo incluye symbol_id
, exchange_id
, security_category
, name
, y la date
a la que la información se refiere.Una porción significativa de la API está dedicada a proporcionar datos históricos altamente detallados y de precisión en nanosegundos, obtenidos directamente del feed del intercambio de acciones. Estos endpoints permiten un análisis profundo y la reconstrucción de eventos del mercado para símbolos específicos en fechas específicas. El parámetro date
(formato AAAA-MM-DD) es requerido para estos endpoints.
El endpoint /v1/native/iex/trade/{symbol}
recupera informes de intercambios individuales y rupturas de intercambios para un símbolo y fecha dados. Cada registro indica si es una ruptura de intercambio (is_trade_break
), proporciona marcas de tiempo en nanosegundos (timestamp_nanos
) y estándar (timestamp
), tamaño del intercambio size
y price
, el único trade_id
(que vincula informes y rupturas), y varias banderas de condición: is_intermarket_sweep
, is_extended_hours_trade
, is_odd_lot_trade
, is_trade_through_exempt
, y is_single_price_cross_trade
.
El endpoint /v1/native/iex/level3-order-book/{symbol}
proporciona los datos necesarios para reconstruir el libro de órdenes a profundidad históricamente. Devuelve un flujo de eventos que incluye:
add_order
: Detalla un nuevo pedido agregado al libro, incluyendo lado (is_side_buy
), size
, price
, order_id
, y marca de tiempo en nanosegundos timestamp
.delete_order
: Indica una cancelación de pedido haciendo referencia al order_id_reference
y timestamp
.modify_order
: Muestra modificaciones de pedido con order_id_reference
, nuevo size
, price
, estado de reinicio de prioridad (is_priority_reset
), y timestamp
.executed_order
: Informa una ejecución de intercambio contra un pedido en reposo, haciendo referencia al order_id_reference
, tamaño size
ejecutado, price
, trade_id
, banderas de condición de venta, y timestamp
.clear_book
: Indica que el libro de órdenes para el símbolo fue limpiado en el dado timestamp
.Para información de profundidad agregada, el endpoint /v1/native/iex/level2-price-level-update/{symbol}
proporciona actualizaciones históricas a los niveles de precio. Devuelve el tamaño de cotización agregado size
a un nivel de price
específico para el lado de compra o venta (is_side_buy
), junto con la timestamp
del evento (nanos y estándar).
El endpoint /v1/native/iex/level1-quote/{symbol}
entrega actualizaciones históricas de cotizaciones top-of-book. Proporciona el mejor bid_price
y bid_size
, junto con el mejor ask_price
y ask_size
, con marcas de tiempo asociadas (nanos y estándar). También incluye banderas que indican si el símbolo estaba disponible para comerciar y si la cotización ocurrió durante las sesiones de pre/post-mercado.
El endpoint /v1/native/iex/admin/messages/{symbol}
ofrece un rico conjunto de mensajes administrativos y de estado para un símbolo y fecha. Esto incluye:
trading_status
: Indica si el comercio está activo, detenido, pausado, o en un período de aceptación de pedidos, junto con códigos de razón detallados (por ejemplo, noticias pendientes, relacionado con IPO, niveles de interruptor de circuito de mercado).official_price
: Proporciona precios oficiales de apertura ('Q') y cierre ('M').security_event
: Señala la finalización del proceso de apertura ('O') o cierre ('C').auction_information
: Detalles para subastas de apertura, cierre, IPO, detención, o volatilidad, incluyendo tipo, acciones emparejadas, precio de referencia, precio de liquidación indicativo, acciones y lado desequilibrados, número de extensión, tiempo programado, y precios de collar.short_sale_price_test
: Estado y detalles de restricciones de la Regla de Venta en Corto (activada, continuada, desactivada).operational_halt_status
: Indica detenciones operativas específicas de IEX.retail_liquidity_indicator
: Muestra indicaciones de interés de compra/venta al por menor.security_directory
: Proporciona datos de referencia como round_lot_size
, precio POC ajustado, y nivel LULD (Límite Arriba/Límite Abajo).El endpoint /v1/native/iex/admin/system-event
recupera eventos del sistema de mercado para una fecha específica. Esto incluye marcas de tiempo (nanos y estándar) para eventos como Inicio/Fín de Mensajes, Inicio/Fín de Horas del Sistema, y Inicio/Fín de Horas del Mercado Regular, junto con texto descriptivo.
Lista de intercambios
[
{
"exchange_id": "ALXB",
"last_datapoint_date": "2025-06-03",
"mic": "ALXB",
"operating_mic": "XBRU",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "EURONEXT GROWTH BRUSSELS",
"legal_entity_name": "EURONEXT BRUSSELS",
"lei": "5493007YLUF2KAS0TM17",
"market_category_code": "MLTF",
"iso_country_code": "BE",
"city": "BRUSSELS",
"website": "WWW.EURONEXT.COM",
"status": "ACTIVE",
"creation_date": "2007-08-27T00:00:00.0000000Z",
"last_update_date": "2024-05-27T00:00:00.0000000Z"
},
{
"exchange_id": "ALXL",
"last_datapoint_date": "2025-06-03",
"mic": "ALXL",
"operating_mic": "XLIS",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "EURONEXT GROWTH LISBON",
"legal_entity_name": "EURONEXT LISBON - SOCIEDADE GESTORA DE MERCADOS REGULAMENTADOS S.A.",
"lei": "529900K0OK4J5I7A5V66",
"market_category_code": "MLTF",
"iso_country_code": "PT",
"city": "LISBON",
"website": "WWW.EURONEXT.COM",
"status": "ACTIVE",
"creation_date": "2011-05-23T00:00:00.0000000Z",
"last_update_date": "2023-10-23T00:00:00.0000000Z"
},
{
"exchange_id": "ALXP",
"last_datapoint_date": "2025-06-03",
"mic": "ALXP",
"operating_mic": "XPAR",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "EURONEXT GROWTH PARIS",
"legal_entity_name": "EURONEXT GROUP",
"lei": "9695005FC092L0GTDS86",
"market_category_code": "MLTF",
"iso_country_code": "FR",
"city": "PARIS",
"website": "WWW.EURONEXT.COM",
"status": "ACTIVE",
"creation_date": "2007-08-27T00:00:00.0000000Z",
"last_update_date": "2024-05-27T00:00:00.0000000Z",
"last_validation_date": "2024-05-27T00:00:00.0000000Z"
},
{
"exchange_id": "ATFX",
"last_datapoint_date": "2025-06-03",
"mic": "ATFX",
"operating_mic": "XMIL",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "ATFUND MTF",
"legal_entity_name": "BORSA ITALIANA S.P.A.",
"lei": "8156005391EE905D3124",
"market_category_code": "MLTF",
"acronym": "ATFUND",
"iso_country_code": "IT",
"city": "MILAN",
"website": "WWW.BORSAITALIANA.IT",
"status": "ACTIVE",
"creation_date": "2018-07-23T00:00:00.0000000Z",
"last_update_date": "2023-04-24T00:00:00.0000000Z",
"last_validation_date": "2023-04-24T00:00:00.0000000Z",
"comments": "MULTILATERAL TRADING FACILITY FOR OPEN END FUNDS."
},
{
"exchange_id": "BGEM",
"last_datapoint_date": "2025-06-03",
"mic": "BGEM",
"operating_mic": "XMIL",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "BORSA ITALIANA GLOBAL EQUITY MARKET",
"legal_entity_name": "BORSA ITALIANA S.P.A.",
"lei": "8156005391EE905D3124",
"market_category_code": "MLTF",
"acronym": "BITGEM",
"iso_country_code": "IT",
"city": "MILAN",
"website": "WWW.BORSAITALIANA.IT",
"status": "ACTIVE",
"creation_date": "2022-11-28T00:00:00.0000000Z",
"last_update_date": "2023-03-27T00:00:00.0000000Z",
"last_validation_date": "2023-03-27T00:00:00.0000000Z",
"comments": "MULTILATERAL TRADING FACILITY FOR INTERNATIONAL EQUITIES."
},
{
"exchange_id": "ENXL",
"last_datapoint_date": "2025-06-03",
"mic": "ENXL",
"operating_mic": "XLIS",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "EURONEXT ACCESS LISBON",
"legal_entity_name": "EURONEXT LISBON - SOCIEDADE GESTORA DE MERCADOS REGULAMENTADOS S.A.",
"lei": "529900K0OK4J5I7A5V66",
"market_category_code": "MLTF",
"iso_country_code": "PT",
"city": "LISBON",
"website": "WWW.EURONEXT.COM",
"status": "ACTIVE",
"creation_date": "2007-08-27T00:00:00.0000000Z",
"last_update_date": "2023-10-23T00:00:00.0000000Z"
},
{
"exchange_id": "ETFP",
"last_datapoint_date": "2025-06-03",
"mic": "ETFP",
"operating_mic": "XMIL",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "ELECTRONIC ETF, ETC/ETN AND OPEN-END FUNDS MARKET",
"legal_entity_name": "BORSA ITALIANA S.P.A.",
"lei": "8156005391EE905D3124",
"market_category_code": "RMKT",
"acronym": "ETFPLUS",
"iso_country_code": "IT",
"city": "MILAN",
"website": "WWW.BORSAITALIANA.IT",
"status": "ACTIVE",
"creation_date": "2007-09-24T00:00:00.0000000Z",
"last_update_date": "2023-04-24T00:00:00.0000000Z",
"last_validation_date": "2023-04-24T00:00:00.0000000Z"
},
{
"exchange_id": "ETLX",
"last_datapoint_date": "2025-06-03",
"mic": "ETLX",
"operating_mic": "XMIL",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "EUROTLX",
"legal_entity_name": "BORSA ITALIANA S.P.A.",
"lei": "8156005391EE905D3124",
"market_category_code": "MLTF",
"iso_country_code": "IT",
"city": "MILAN",
"website": "WWW.BORSAITALIANA.IT",
"status": "ACTIVE",
"creation_date": "2007-08-27T00:00:00.0000000Z",
"last_update_date": "2024-06-24T00:00:00.0000000Z",
"last_validation_date": "2024-06-24T00:00:00.0000000Z"
},
{
"exchange_id": "EXGM",
"last_datapoint_date": "2025-06-03",
"mic": "EXGM",
"operating_mic": "XMIL",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "EURONEXT GROWTH MILAN",
"legal_entity_name": "BORSA ITALIANA S.P.A.",
"lei": "8156005391EE905D3124",
"market_category_code": "MLTF",
"acronym": "EGM",
"iso_country_code": "IT",
"city": "MILAN",
"website": "WWW.BORSAITALIANA.IT",
"status": "ACTIVE",
"creation_date": "2021-10-25T00:00:00.0000000Z",
"last_update_date": "2023-03-27T00:00:00.0000000Z",
"last_validation_date": "2023-03-27T00:00:00.0000000Z",
"comments": "MULTILATERAL TRADING FACILITY DEDICATED TO DYNAMIC AND COMPETITIVE SMES, WHICH ARE LOOKING FOR CAPITAL TO FINANCE THEIR GROWTH."
},
{
"exchange_id": "IEXG",
"last_datapoint_date": "2025-06-03",
"mic": "IEXG",
"operating_mic": "IEXG",
"oprt_sgmt": "OPRT",
"market_name_institution_description": "INVESTORS EXCHANGE",
"legal_entity_name": "INVESTORS EXCHANGE LLC",
"market_category_code": "NSPD",
"acronym": "IEX",
"iso_country_code": "US",
"city": "NEW YORK",
"website": "WWW.IEX.IO",
"status": "ACTIVE",
"creation_date": "2013-10-28T00:00:00.0000000Z",
"last_update_date": "2022-10-24T00:00:00.0000000Z"
},
{
"exchange_id": "MERK",
"last_datapoint_date": "2025-06-03",
"mic": "MERK",
"operating_mic": "XOSL",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "EURONEXT GROWTH - OSLO",
"legal_entity_name": "OSLO BORS ASA",
"lei": "5967007LIEEXZXHDL433",
"market_category_code": "NSPD",
"iso_country_code": "NO",
"city": "OSLO",
"website": "WWW.OSLOBORS.NO",
"status": "ACTIVE",
"creation_date": "2015-08-24T00:00:00.0000000Z",
"last_update_date": "2020-10-26T00:00:00.0000000Z",
"comments": "MULTILATERAL TRADING FACILITY FOR FINANCIAL INSTRUMENTS"
},
{
"exchange_id": "MIVX",
"last_datapoint_date": "2025-06-03",
"mic": "MIVX",
"operating_mic": "XMIL",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "EURONEXT MIV MILAN",
"legal_entity_name": "BORSA ITALIANA S.P.A.",
"lei": "8156005391EE905D3124",
"market_category_code": "RMKT",
"acronym": "MIV",
"iso_country_code": "IT",
"city": "MILAN",
"website": "WWW.BORSAITALIANA.IT",
"status": "ACTIVE",
"creation_date": "2009-06-22T00:00:00.0000000Z",
"last_update_date": "2017-05-22T00:00:00.0000000Z",
"comments": "THE MIV, DEDICATED TO INVESTMENT VEHICLES, IS DIVIDED INTO THREE SEGMENTS: UNITS OF CLOSED-END FUNDS SEGMENT, INVESTMENT COMPANIES SEGMENT, REAL ESTATE INVESTMENT COMPANIES SEGMENT (REICS FROM THE EXPANDI MARKET). RENAMED INTO EURONEXT MIV MILAN"
},
{
"exchange_id": "MLXB",
"last_datapoint_date": "2025-06-03",
"mic": "MLXB",
"operating_mic": "XBRU",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "EURONEXT ACCESS BRUSSELS",
"lei": "5493007YLUF2KAS0TM17",
"market_category_code": "NSPD",
"iso_country_code": "BE",
"city": "BRUSSELS",
"website": "WWW.EURONEXT.COM",
"status": "ACTIVE",
"creation_date": "2007-08-27T00:00:00.0000000Z",
"last_update_date": "2017-06-26T00:00:00.0000000Z"
},
{
"exchange_id": "MTAA",
"last_datapoint_date": "2025-06-03",
"mic": "MTAA",
"operating_mic": "XMIL",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "EURONEXT MILAN",
"legal_entity_name": "BORSA ITALIANA S.P.A.",
"lei": "8156005391EE905D3124",
"market_category_code": "RMKT",
"acronym": "MTA",
"iso_country_code": "IT",
"city": "MILAN",
"website": "WWW.BORSAITALIANA.IT",
"status": "ACTIVE",
"creation_date": "2007-09-24T00:00:00.0000000Z",
"last_update_date": "2017-05-22T00:00:00.0000000Z",
"comments": "RENAMED FROM \u0022ELECTRONIC SHARE MARKET\u0022 TO \u0022EURONEXT MILAN\u0022"
},
{
"exchange_id": "MTAH",
"last_datapoint_date": "2025-06-03",
"mic": "MTAH",
"operating_mic": "XMIL",
"oprt_sgmt": "SGMT",
"market_name_institution_description": "BORSA ITALIANA - TRADING AFTER HOURS",
"legal_entity_name": "BORSA ITALIANA S.P.A.",
"lei": "8156005391EE905D3124",
"market_category_code": "MLTF",
"acronym": "TAH",
"iso_country_code": "IT",
"city": "MILAN",
"website": "WWW.BORSAITALIANA.IT",
"status": "ACTIVE",
"creation_date": "2016-07-25T00:00:00.0000000Z",
"last_update_date": "2023-03-27T00:00:00.0000000Z",
"last_validation_date": "2023-03-27T00:00:00.0000000Z",
"comments": "MULTILATERAL TRADING FACILITY FOR TRADING DURING EXTENDED HOURS (FOR ITALIAN AND INTL. SHARES, FROM 6PM TO 8:30PM MILAN TIME)."
},
{
"exchange_id": "ROCO",
"last_datapoint_date": "2025-06-03",
"mic": "ROCO",
"operating_mi...
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9790/lista+de+intercambios' --header 'Authorization: Bearer YOUR_API_KEY'
Lista de símbolos para el intercambio
[
{
"symbol_id": "TSLA",
"exchange_id": "IEXG",
"security_category": "Common Stock",
"name": "TESLA INC",
"date": "2025-05-23"
},
{
"symbol_id": "NVDA",
"exchange_id": "IEXG",
"security_category": "Common Stock",
"name": "NVIDIA CORP",
"date": "2025-05-23"
}
]
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9791/lista+de+s%c3%admbolos+para+el+intercambio.&exchange_id=Required' --header 'Authorization: Bearer YOUR_API_KEY'
OHLCV - Últimos datos
OHLCV - Últimos datos. - Características del Endpoint
Objeto | Descripción |
---|---|
period_id |
[Requerido] |
exchange_id |
[Requerido] |
symbol_id |
[Requerido] |
[
{
"time_period_start": "2017-08-09T14:31:00.0000000Z",
"time_period_end": "2017-08-09T14:32:00.0000000Z",
"time_open": "2017-08-09T14:31:01.0000000Z",
"time_close": "2017-08-09T14:31:46.0000000Z",
"price_open": 3255.59,
"price_high": 3255.59,
"price_low": 3244.74,
"price_close": 3244.74,
"volume_traded": 16.90327455,
"trades_count": 31
},
{
"time_period_start": "2017-08-09T14:30:00.0000000Z",
"time_period_end": "2017-08-09T14:31:00.0000000Z",
"time_open": "2017-08-09T14:30:05.0000000Z",
"time_close": "2017-08-09T14:30:35.0000000Z",
"price_open": 3256,
"price_high": 3256.01,
"price_low": 3247,
"price_close": 3255.6,
"volume_traded": 58.13139792,
"trades_count": 33
}
]
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9792/ohlcv+-+%c3%9altimos+datos.?period_id=1DAY&exchange_id=Required&/=Required&symbol_id=Required' --header 'Authorization: Bearer YOUR_API_KEY'
OHLCV - Listar todos los períodos
[
{
"period_id": "1SEC",
"length_seconds": 1,
"length_months": 0,
"unit_count": 1,
"unit_name": "second",
"display_name": "1 Second"
},
{
"period_id": "2SEC",
"length_seconds": 2,
"length_months": 0,
"unit_count": 2,
"unit_name": "second",
"display_name": "2 Seconds"
},
{
"period_id": "3SEC",
"length_seconds": 3,
"length_months": 0,
"unit_count": 3,
"unit_name": "second",
"display_name": "3 Seconds"
},
{
"period_id": "4SEC",
"length_seconds": 4,
"length_months": 0,
"unit_count": 4,
"unit_name": "second",
"display_name": "4 Seconds"
},
{
"period_id": "5SEC",
"length_seconds": 5,
"length_months": 0,
"unit_count": 5,
"unit_name": "second",
"display_name": "5 Seconds"
},
{
"period_id": "6SEC",
"length_seconds": 6,
"length_months": 0,
"unit_count": 6,
"unit_name": "second",
"display_name": "6 Seconds"
},
{
"period_id": "10SEC",
"length_seconds": 10,
"length_months": 0,
"unit_count": 10,
"unit_name": "second",
"display_name": "10 Seconds"
},
{
"period_id": "15SEC",
"length_seconds": 15,
"length_months": 0,
"unit_count": 15,
"unit_name": "second",
"display_name": "15 Seconds"
},
{
"period_id": "20SEC",
"length_seconds": 20,
"length_months": 0,
"unit_count": 20,
"unit_name": "second",
"display_name": "20 Seconds"
},
{
"period_id": "30SEC",
"length_seconds": 30,
"length_months": 0,
"unit_count": 30,
"unit_name": "second",
"display_name": "30 Seconds"
},
{
"period_id": "1MIN",
"length_seconds": 60,
"length_months": 0,
"unit_count": 1,
"unit_name": "minute",
"display_name": "1 Minute"
},
{
"period_id": "2MIN",
"length_seconds": 120,
"length_months": 0,
"unit_count": 2,
"unit_name": "minute",
"display_name": "2 Minutes"
},
{
"period_id": "3MIN",
"length_seconds": 180,
"length_months": 0,
"unit_count": 3,
"unit_name": "minute",
"display_name": "3 Minutes"
},
{
"period_id": "4MIN",
"length_seconds": 240,
"length_months": 0,
"unit_count": 4,
"unit_name": "minute",
"display_name": "4 Minutes"
},
{
"period_id": "5MIN",
"length_seconds": 300,
"length_months": 0,
"unit_count": 5,
"unit_name": "minute",
"display_name": "5 Minutes"
},
{
"period_id": "6MIN",
"length_seconds": 360,
"length_months": 0,
"unit_count": 6,
"unit_name": "minute",
"display_name": "6 Minutes"
},
{
"period_id": "10MIN",
"length_seconds": 600,
"length_months": 0,
"unit_count": 10,
"unit_name": "minute",
"display_name": "10 Minutes"
},
{
"period_id": "15MIN",
"length_seconds": 900,
"length_months": 0,
"unit_count": 15,
"unit_name": "minute",
"display_name": "15 Minutes"
},
{
"period_id": "20MIN",
"length_seconds": 1200,
"length_months": 0,
"unit_count": 20,
"unit_name": "minute",
"display_name": "20 Minutes"
},
{
"period_id": "30MIN",
"length_seconds": 1800,
"length_months": 0,
"unit_count": 30,
"unit_name": "minute",
"display_name": "30 Minutes"
},
{
"period_id": "1HRS",
"length_seconds": 3600,
"length_months": 0,
"unit_count": 1,
"unit_name": "hour",
"display_name": "1 Hour"
},
{
"period_id": "2HRS",
"length_seconds": 7200,
"length_months": 0,
"unit_count": 2,
"unit_name": "hour",
"display_name": "2 Hours"
},
{
"period_id": "3HRS",
"length_seconds": 10800,
"length_months": 0,
"unit_count": 3,
"unit_name": "hour",
"display_name": "3 Hours"
},
{
"period_id": "4HRS",
"length_seconds": 14400,
"length_months": 0,
"unit_count": 4,
"unit_name": "hour",
"display_name": "4 Hours"
},
{
"period_id": "6HRS",
"length_seconds": 21600,
"length_months": 0,
"unit_count": 6,
"unit_name": "hour",
"display_name": "6 Hours"
},
{
"period_id": "8HRS",
"length_seconds": 28800,
"length_months": 0,
"unit_count": 8,
"unit_name": "hour",
"display_name": "8 Hours"
},
{
"period_id": "12HRS",
"length_seconds": 43200,
"length_months": 0,
"unit_count": 12,
"unit_name": "hour",
"display_name": "12 Hours"
},
{
"period_id": "1DAY",
"length_seconds": 86400,
"length_months": 0,
"unit_count": 1,
"unit_name": "day",
"display_name": "1 Day"
},
{
"period_id": "2DAY",
"length_seconds": 172800,
"length_months": 0,
"unit_count": 2,
"unit_name": "day",
"display_name": "2 Days"
},
{
"period_id": "3DAY",
"length_seconds": 259200,
"length_months": 0,
"unit_count": 3,
"unit_name": "day",
"display_name": "3 Days"
},
{
"period_id": "5DAY",
"length_seconds": 432000,
"length_months": 0,
"unit_count": 5,
"unit_name": "day",
"display_name": "5 Days"
},
{
"period_id": "7DAY",
"length_seconds": 604800,
"length_months": 0,
"unit_count": 7,
"unit_name": "day",
"display_name": "7 Days"
},
{
"period_id": "10DAY",
"length_seconds": 864000,
"length_months": 0,
"unit_count": 10,
"unit_name": "day",
"display_name": "10 Days"
},
{
"period_id": "1MTH",
"length_seconds": 0,
"length_months": 1,
"unit_count": 1,
"unit_name": "month",
"display_name": "1 Month"
},
{
"period_id": "2MTH",
"length_seconds": 0,
"length_months": 2,
"unit_count": 2,
"unit_name": "month",
"display_name": "2 Months"
},
{
"period_id": "3MTH",
"length_seconds": 0,
"length_months": 3,
"unit_count": 3,
"unit_name": "month",
"display_name": "3 Months"
},
{
"period_id": "4MTH",
"length_seconds": 0,
"length_months": 4,
"unit_count": 4,
"unit_name": "month",
"display_name": "4 Months"
},
{
"period_id": "6MTH",
"length_seconds": 0,
"length_months": 6,
"unit_count": 6,
"unit_name": "month",
"display_name": "6 Months"
},
{
"period_id": "1YRS",
"length_seconds": 0,
"length_months": 12,
"unit_count": 1,
"unit_name": "year",
"display_name": "1 Year"
},
{
"period_id": "2YRS",
"length_seconds": 0,
"length_months": 24,
"unit_count": 2,
"unit_name": "year",
"display_name": "2 Years"
},
{
"period_id": "3YRS",
"length_seconds": 0,
"length_months": 36,
"unit_count": 3,
"unit_name": "year",
"display_name": "3 Years"
},
{
"period_id": "4YRS",
"length_seconds": 0,
"length_months": 48,
"unit_count": 4,
"unit_name": "year",
"display_name": "4 Years"
},
{
"period_id": "5YRS",
"length_seconds": 0,
"length_months": 60,
"unit_count": 5,
"unit_name": "year",
"display_name": "5 Years"
}
]
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9793/ohlcv+-+listar+todos+los+per%c3%adodos.' --header 'Authorization: Bearer YOUR_API_KEY'
OHLCV - Datos históricos
OHLCV - Datos históricos. - Características del Endpoint
Objeto | Descripción |
---|---|
period_id |
[Requerido] |
time_start |
Opcional |
time_end |
Opcional |
exchange_id |
[Requerido] |
symbol_id |
[Requerido] |
[
{
"time_period_start": "2017-01-01T00:00:00.0000000Z",
"time_period_end": "2017-01-02T00:00:00.0000000Z",
"time_open": "2017-01-01T00:01:08.0000000Z",
"time_close": "2017-01-01T23:59:46.0000000Z",
"price_open": 966.34,
"price_high": 1005,
"price_low": 960.53,
"price_close": 997.75,
"volume_traded": 6850.59330859,
"trades_count": 7815
},
{
"time_period_start": "2017-01-02T00:00:00.0000000Z",
"time_period_end": "2017-01-03T00:00:00.0000000Z",
"time_open": "2017-01-02T00:00:05.0000000Z",
"time_close": "2017-01-02T23:59:37.0000000Z",
"price_open": 997.75,
"price_high": 1032,
"price_low": 990.01,
"price_close": 1012.54,
"volume_traded": 8167.38103018,
"trades_count": 7871
}
]
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9794/ohlcv+-+datos+hist%c3%b3ricos.?period_id=1DAY&time_start=2025-05-22T00:00:00&exchange_id=Required&/=Required&symbol_id=Required' --header 'Authorization: Bearer YOUR_API_KEY'
OHLCV - Datos históricos por intercambio
OHLCV - Datos históricos por intercambio. - Características del Endpoint
Objeto | Descripción |
---|---|
period_id |
[Requerido] |
time_start |
[Requerido] |
time_end |
[Requerido] |
exchange_id |
[Requerido] |
[
{
"symbol_id_exchange": "10629",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": 0.149,
"price_high": 0.149,
"price_low": 0.149,
"price_close": 0.153,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "14862",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": 0.099,
"price_high": 0.102,
"price_low": 0.099,
"price_close": 0.102,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "29264",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.44,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "2269",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": 24.05,
"price_high": 24.8,
"price_low": 23.5,
"price_close": 23.85,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "69311",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.236,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "0006",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": 52,
"price_high": 52.1,
"price_low": 51.7,
"price_close": 52,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "0521",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": 0.095,
"price_high": 0.099,
"price_low": 0.095,
"price_close": 0.099,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "15518",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": 0.084,
"price_high": 0.099,
"price_low": 0.084,
"price_close": 0.092,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "3333",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.163,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "68397",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": 0.125,
"price_high": 0.135,
"price_low": 0.122,
"price_close": 0.127,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "63054",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.485,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "1987",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.149,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "65577",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.68,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "62429",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.238,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "66642",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.226,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "1080",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": 0.037,
"price_high": 0.04,
"price_low": 0.037,
"price_close": 0.04,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "58668",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.435,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "62437",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.345,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "1999",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": 4.07,
"price_high": 4.21,
"price_low": 4.07,
"price_close": 4.2,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "29681",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.014,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "61702",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.52,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "27354",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.71,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "8132",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": 0.045,
"price_high": 0.045,
"price_low": 0.043,
"price_close": 0.044,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "27673",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 0.025,
"volume_traded": 0,
"trades_count": 0
},
{
"symbol_id_exchange": "67221",
"time_period_start": "2025-05-22T00:00:00.0000000Z",
"time_period_end": "2025-05-23T00:00:00.0000000Z",
"time_open": "2025-05-22T00:00:00.0000000Z",
"time_close": "2025-05-23T00:00:00.0000000Z",
"price_open": -0.001,
"price_high": -0.001,
"price_low": -0.001,
"price_close": 1.05,
"volu...
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9795/ohlcv+-+datos+hist%c3%b3ricos+por+intercambio.?period_id=1DAY&time_start=2025-05-22T00:00:00&time_end=2025-05-23T00:00:00&exchange_id=Required' --header 'Authorization: Bearer YOUR_API_KEY'
Obtener mensajes de administración
Obtener mensajes de admin. - Características del Endpoint
Objeto | Descripción |
---|---|
date |
[Requerido] |
symbol |
[Requerido] |
[
{
"short_sale_price_test": {
"symbol": "AAPL",
"timestamp_nanos": 1711971102839052659,
"timestamp": "2024-04-01T11:31:42.8390526Z",
"short_sale_price_test_status": 0,
"short_sale_price_test_status_code": "0",
"short_sale_price_test_status_text": "Short Sale Price Test Not in Effect",
"is_short_sale_price_test_not_in_effect": true,
"is_short_sale_price_test_in_effect": false,
"detail": 32,
"detail_code": " ",
"detail_text": "No price test in place",
"is_detail_no_price_test": true,
"is_detail_activated": false,
"is_detail_continued": false,
"is_detail_deactivated": false,
"is_detail_not_available": false
}
},
{
"operational_halt_status": {
"symbol": "AAPL",
"timestamp_nanos": 1711971102839052659,
"timestamp": "2024-04-01T11:31:42.8390526Z",
"operational_halt_status": 78,
"operational_halt_status_code": "N",
"operational_halt_status_text": "Not operationally halted on IEX",
"is_operationally_halted": false,
"is_not_operationally_halted": true
}
},
{
"trading_status": {
"symbol": "AAPL",
"timestamp_nanos": 1711971102839052659,
"timestamp": "2024-04-01T11:31:42.8390526Z",
"is_trading_live": true,
"is_trading_halted": false,
"is_trading_in_order_acceptance_period": false,
"is_trading_paused": false,
"is_reason_halt_news_pending": false,
"is_reason_ipo_not_yet_trading": false,
"is_reason_ipo_deferred": false,
"is_reason_halt_news_dissemination": false,
"is_reason_ipo_order_acceptance_period": false,
"is_reason_ipo_pre_launch_period": false,
"is_reason_market_wide_circuit_breaker_level1": false,
"is_reason_market_wide_circuit_breaker_level2": false,
"is_reason_market_wide_circuit_breaker_level3": false,
"is_reason_not_applicable": true,
"is_reason_not_available": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711971102839052659,
"timestamp": "2024-04-01T11:31:42.8390526Z",
"retail_liquidity_indicator": 32,
"retail_liquidity_indicator_code": " ",
"retail_liquidity_indicator_text": "Retail indicator not applicable",
"is_retail_indicator_not_applicable": true,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": false,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979615059630177,
"timestamp": "2024-04-01T13:53:35.0596301Z",
"retail_liquidity_indicator": 66,
"retail_liquidity_indicator_code": "B",
"retail_liquidity_indicator_text": "Sell interest for Retail",
"is_retail_indicator_not_applicable": false,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": true,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979616035878823,
"timestamp": "2024-04-01T13:53:36.0358788Z",
"retail_liquidity_indicator": 32,
"retail_liquidity_indicator_code": " ",
"retail_liquidity_indicator_text": "Retail indicator not applicable",
"is_retail_indicator_not_applicable": true,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": false,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979643264700946,
"timestamp": "2024-04-01T13:54:03.2647009Z",
"retail_liquidity_indicator": 66,
"retail_liquidity_indicator_code": "B",
"retail_liquidity_indicator_text": "Sell interest for Retail",
"is_retail_indicator_not_applicable": false,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": true,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979645707559103,
"timestamp": "2024-04-01T13:54:05.7075591Z",
"retail_liquidity_indicator": 32,
"retail_liquidity_indicator_code": " ",
"retail_liquidity_indicator_text": "Retail indicator not applicable",
"is_retail_indicator_not_applicable": true,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": false,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979645707643929,
"timestamp": "2024-04-01T13:54:05.7076439Z",
"retail_liquidity_indicator": 66,
"retail_liquidity_indicator_code": "B",
"retail_liquidity_indicator_text": "Sell interest for Retail",
"is_retail_indicator_not_applicable": false,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": true,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979645708152124,
"timestamp": "2024-04-01T13:54:05.7081521Z",
"retail_liquidity_indicator": 32,
"retail_liquidity_indicator_code": " ",
"retail_liquidity_indicator_text": "Retail indicator not applicable",
"is_retail_indicator_not_applicable": true,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": false,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979645708372658,
"timestamp": "2024-04-01T13:54:05.7083726Z",
"retail_liquidity_indicator": 66,
"retail_liquidity_indicator_code": "B",
"retail_liquidity_indicator_text": "Sell interest for Retail",
"is_retail_indicator_not_applicable": false,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": true,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979645710358549,
"timestamp": "2024-04-01T13:54:05.7103585Z",
"retail_liquidity_indicator": 32,
"retail_liquidity_indicator_code": " ",
"retail_liquidity_indicator_text": "Retail indicator not applicable",
"is_retail_indicator_not_applicable": true,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": false,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979645710565203,
"timestamp": "2024-04-01T13:54:05.7105652Z",
"retail_liquidity_indicator": 66,
"retail_liquidity_indicator_code": "B",
"retail_liquidity_indicator_text": "Sell interest for Retail",
"is_retail_indicator_not_applicable": false,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": true,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979647263295330,
"timestamp": "2024-04-01T13:54:07.2632953Z",
"retail_liquidity_indicator": 32,
"retail_liquidity_indicator_code": " ",
"retail_liquidity_indicator_text": "Retail indicator not applicable",
"is_retail_indicator_not_applicable": true,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": false,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979647263315221,
"timestamp": "2024-04-01T13:54:07.2633152Z",
"retail_liquidity_indicator": 66,
"retail_liquidity_indicator_code": "B",
"retail_liquidity_indicator_text": "Sell interest for Retail",
"is_retail_indicator_not_applicable": false,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": true,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979649603060693,
"timestamp": "2024-04-01T13:54:09.6030606Z",
"retail_liquidity_indicator": 32,
"retail_liquidity_indicator_code": " ",
"retail_liquidity_indicator_text": "Retail indicator not applicable",
"is_retail_indicator_not_applicable": true,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": false,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979649603262660,
"timestamp": "2024-04-01T13:54:09.6032626Z",
"retail_liquidity_indicator": 66,
"retail_liquidity_indicator_code": "B",
"retail_liquidity_indicator_text": "Sell interest for Retail",
"is_retail_indicator_not_applicable": false,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": true,
"is_retail_indicator_buy_and_sell_interest": false
}
},
{
"retail_liquidity_indicator": {
"symbol": "AAPL",
"timestamp_nanos": 1711979649603897681,
"timestamp": "2024-04-01T13:54:09.6038976Z",
"retail_liquidity_indicator": 32,
"retail_liquidity_indicator_code": " ",
"retail_liquidity_indicator_text": "Retail indicator not applicable",
"is_retail_indicator_not_applicable": true,
"is_retail_indicator_buy_interest": false,
"is_retail_indicator_sell_interest": false,
"is_retail_indicator_buy_...
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9796/obtener+mensajes+de+admin.?date=2024-04-01&symbol=Required' --header 'Authorization: Bearer YOUR_API_KEY'
Obtener libro de órdenes de nivel 3
Obtener libro de órdenes de nivel 3. - Características del Endpoint
Objeto | Descripción |
---|---|
date |
[Requerido] |
symbol |
[Requerido] |
[
{
"add_order": {
"symbol": "AAPL",
"timestamp_nanos": 1747980262618000000,
"timestamp": "2025-05-23T06:04:22.6180000Z",
"is_side_buy": true,
"size": 100,
"price": 176.42,
"order_id": 123456789
}
},
{
"delete_order": {
"symbol": "TSLA",
"timestamp_nanos": 1747980262624000000,
"timestamp": "2025-05-23T06:04:22.6240000Z",
"order_id_reference": 987654321
}
},
{
"modify_order": {
"symbol": "NFLX",
"timestamp_nanos": 1747980262624000000,
"timestamp": "2025-05-23T06:04:22.6240000Z",
"order_id_reference": 789456123,
"is_priority_reset": false,
"size": 150,
"price": 625.85
}
},
{
"executed_order": {
"symbol": "META",
"timestamp_nanos": 1747980262624000000,
"timestamp": "2025-05-23T06:04:22.6240000Z",
"order_id_reference": 555123456,
"sale_condition_flags": 0,
"is_intermarket_sweep": false,
"is_extended_hours_trade": false,
"is_odd_lot_trade": false,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false,
"size": 200,
"price": 421,
"trade_id": 123987456
}
},
{
"clear_book": {
"symbol": "MSFT",
"timestamp_nanos": 1747980262624000000,
"timestamp": "2025-05-23T06:04:22.6240000Z"
}
}
]
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9797/obtener+libro+de+%c3%b3rdenes+de+nivel+3.?date=2025-05-28&symbol=Required' --header 'Authorization: Bearer YOUR_API_KEY'
Obtener el Libro de Niveles de Precio de Nivel-2
Obtén el Libro de Nivel de Precio de Nivel 2. - Características del Endpoint
Objeto | Descripción |
---|---|
date |
[Requerido] |
symbol |
[Requerido] |
[
{
"symbol": "ACLC",
"timestamp_nanos": 1748443317297811434,
"timestamp": "2025-05-28T14:41:57.2978114Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.19
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748443317494996939,
"timestamp": "2025-05-28T14:41:57.4949969Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.19
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748444634521860805,
"timestamp": "2025-05-28T15:03:54.5218608Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.14
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748444642856077996,
"timestamp": "2025-05-28T15:04:02.8560779Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.14
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748444996790733382,
"timestamp": "2025-05-28T15:09:56.7907333Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.13
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748445012547670127,
"timestamp": "2025-05-28T15:10:12.5476701Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.13
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748445071861844877,
"timestamp": "2025-05-28T15:11:11.8618448Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.11
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748445077781870132,
"timestamp": "2025-05-28T15:11:17.7818701Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.11
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748449509813778974,
"timestamp": "2025-05-28T16:25:09.8137789Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.11
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748449543139316756,
"timestamp": "2025-05-28T16:25:43.1393167Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.11
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458318000829523,
"timestamp": "2025-05-28T18:51:58.0008295Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.08
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458318144865962,
"timestamp": "2025-05-28T18:51:58.1448659Z",
"is_side_buy": false,
"is_event_processing_complete": false,
"size": 0,
"price": 69.08
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458318144865962,
"timestamp": "2025-05-28T18:51:58.1448659Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.09
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458318154864349,
"timestamp": "2025-05-28T18:51:58.1548643Z",
"is_side_buy": false,
"is_event_processing_complete": false,
"size": 0,
"price": 69.09
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458318154864349,
"timestamp": "2025-05-28T18:51:58.1548643Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.08
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458318294029396,
"timestamp": "2025-05-28T18:51:58.2940293Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.08
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458321085122051,
"timestamp": "2025-05-28T18:52:01.0851220Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.06
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458321492180772,
"timestamp": "2025-05-28T18:52:01.4921807Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.06
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458322047003592,
"timestamp": "2025-05-28T18:52:02.0470035Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.05
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458322422581708,
"timestamp": "2025-05-28T18:52:02.4225817Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.05
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458323134883435,
"timestamp": "2025-05-28T18:52:03.1348834Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.03
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458324463507005,
"timestamp": "2025-05-28T18:52:04.4635070Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.03
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458324572916907,
"timestamp": "2025-05-28T18:52:04.5729169Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.01
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458324781404112,
"timestamp": "2025-05-28T18:52:04.7814041Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.01
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458327478276291,
"timestamp": "2025-05-28T18:52:07.4782762Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458329893349707,
"timestamp": "2025-05-28T18:52:09.8933497Z",
"is_side_buy": false,
"is_event_processing_complete": false,
"size": 0,
"price": 69
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458329893349707,
"timestamp": "2025-05-28T18:52:09.8933497Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.01
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458329897365245,
"timestamp": "2025-05-28T18:52:09.8973652Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.01
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458330374145122,
"timestamp": "2025-05-28T18:52:10.3741451Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 68.97
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458330599055328,
"timestamp": "2025-05-28T18:52:10.5990553Z",
"is_side_buy": false,
"is_event_processing_complete": false,
"size": 0,
"price": 68.97
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458330599055328,
"timestamp": "2025-05-28T18:52:10.5990553Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 68.98
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748458332944801773,
"timestamp": "2025-05-28T18:52:12.9448017Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 68.98
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748459883100628667,
"timestamp": "2025-05-28T19:18:03.1006286Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.09
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748459883320096638,
"timestamp": "2025-05-28T19:18:03.3200966Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.09
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748459907661257857,
"timestamp": "2025-05-28T19:18:27.6612578Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.07
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748459907881082259,
"timestamp": "2025-05-28T19:18:27.8810822Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.07
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748459910323279618,
"timestamp": "2025-05-28T19:18:30.3232796Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.08
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748459912154575650,
"timestamp": "2025-05-28T19:18:32.1545756Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.08
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748459981785200780,
"timestamp": "2025-05-28T19:19:41.7852007Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.1
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748459981985115711,
"timestamp": "2025-05-28T19:19:41.9851157Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.1
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748460180055680539,
"timestamp": "2025-05-28T19:23:00.0556805Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.08
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748460180377652355,
"timestamp": "2025-05-28T19:23:00.3776523Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.08
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748460222715300397,
"timestamp": "2025-05-28T19:23:42.7153003Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 72,
"price": 69.08
},
{
"symbol": "ACLC",
"timestamp_nanos": 1748460228521950626,
"timestamp": "2025-05-28T19:23:48.5219506Z",
"is_side_buy": false,
"is_event_processing_complete": true,
"size": 0,
"price": 69.08
},
{
"symbol": "ACLC",
"times...
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9798/obt%c3%a9n+el+libro+de+nivel+de+precio+de+nivel+2.?date=2025-05-28&symbol=Required' --header 'Authorization: Bearer YOUR_API_KEY'
Obtener Cotizaciones de Nivel 1
Obtener cotizaciones de Nivel 1. - Características del Endpoint
Objeto | Descripción |
---|---|
date |
[Requerido] |
symbol |
[Requerido] |
[
{
"symbol": "ACLC",
"timestamp_nanos": 1746097655473631425,
"timestamp": "2025-05-01T11:07:35.4736314Z",
"is_symbol_available": true,
"is_pre_post_market_session": true,
"ask_size": 0,
"ask_price": 0,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106200000137558,
"timestamp": "2025-05-01T13:30:00.0001375Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 0,
"ask_price": 0,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106507456371280,
"timestamp": "2025-05-01T13:35:07.4563712Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.74,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106522457137725,
"timestamp": "2025-05-01T13:35:22.4571377Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.71,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106545115218851,
"timestamp": "2025-05-01T13:35:45.1152188Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.73,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106545116812882,
"timestamp": "2025-05-01T13:35:45.1168128Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.73,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106559724395556,
"timestamp": "2025-05-01T13:35:59.7243955Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.74,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106561255601401,
"timestamp": "2025-05-01T13:36:01.2556014Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.71,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106562478487674,
"timestamp": "2025-05-01T13:36:02.4784876Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.72,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106574106409577,
"timestamp": "2025-05-01T13:36:14.1064095Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.74,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106574310343577,
"timestamp": "2025-05-01T13:36:14.3103435Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.75,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106576256523902,
"timestamp": "2025-05-01T13:36:16.2565239Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.73,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106589858184278,
"timestamp": "2025-05-01T13:36:29.8581842Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.74,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106591257700393,
"timestamp": "2025-05-01T13:36:31.2577003Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.72,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106591575373514,
"timestamp": "2025-05-01T13:36:31.5753735Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.73,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106592484470998,
"timestamp": "2025-05-01T13:36:32.4844709Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.75,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106595615216612,
"timestamp": "2025-05-01T13:36:35.6152166Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.76,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106597566647263,
"timestamp": "2025-05-01T13:36:37.5666472Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.77,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106599756689061,
"timestamp": "2025-05-01T13:36:39.7566890Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.78,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106604900831534,
"timestamp": "2025-05-01T13:36:44.9008315Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.79,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106606259405338,
"timestamp": "2025-05-01T13:36:46.2594053Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.79,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106611472370132,
"timestamp": "2025-05-01T13:36:51.4723701Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.8,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106618884352895,
"timestamp": "2025-05-01T13:36:58.8843528Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.81,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106619350731406,
"timestamp": "2025-05-01T13:36:59.3507314Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.82,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106621260381596,
"timestamp": "2025-05-01T13:37:01.2603815Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.82,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106623289246508,
"timestamp": "2025-05-01T13:37:03.2892465Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.83,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106623372389317,
"timestamp": "2025-05-01T13:37:03.3723893Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.84,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106636262065986,
"timestamp": "2025-05-01T13:37:16.2620659Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.84,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106651263622567,
"timestamp": "2025-05-01T13:37:31.2636225Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.82,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106666264481124,
"timestamp": "2025-05-01T13:37:46.2644811Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.81,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106666820265261,
"timestamp": "2025-05-01T13:37:46.8202652Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.82,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106666921259403,
"timestamp": "2025-05-01T13:37:46.9212594Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.83,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106681265706847,
"timestamp": "2025-05-01T13:38:01.2657068Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.83,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106684192280705,
"timestamp": "2025-05-01T13:38:04.1922807Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.85,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106696266913628,
"timestamp": "2025-05-01T13:38:16.2669136Z",
"is_symbol_available": true,
"is_pre_post_market_session": false,
"ask_size": 100,
"ask_price": 65.85,
"bid_price": 0,
"bid_size": 0
},
{
"symbol": "ACLC",
"timestamp_nanos": 1746106696312172475,
"timestamp": "2025-05-01T13:38:16.3121724Z",
"is_symbol_available": true,
"is_pre_post_market_s...
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9799/obtener+cotizaciones+de+nivel+1.?date=2025-05-01&symbol=Required' --header 'Authorization: Bearer YOUR_API_KEY'
Obtener eventos del sistema
Obtener eventos del sistema. - Características del Endpoint
Objeto | Descripción |
---|---|
date |
[Requerido] |
[
{
"timestamp_nanos": 1747912056506697903,
"timestamp": "2025-05-22T11:07:36.5066979Z",
"system_event": 79,
"system_event_code": "O",
"system_event_text": "Start of Messages – Outside of heartbeat messages on the lower level protocol, the start of day message is the first message sent in any trading session.",
"is_system_event_start_of_messages": true,
"is_system_event_start_of_system_hours": false,
"is_system_event_start_of_regular_market_hours": false,
"is_system_event_end_of_regular_market_hours": false,
"is_system_event_end_of_system_hours": false,
"is_system_event_end_of_messages": false
},
{
"timestamp_nanos": 1747915200000599253,
"timestamp": "2025-05-22T12:00:00.0005992Z",
"system_event": 83,
"system_event_code": "S",
"system_event_text": "Start of System Hours – This message indicates that IEX is open and ready to start accepting orders.",
"is_system_event_start_of_messages": false,
"is_system_event_start_of_system_hours": true,
"is_system_event_start_of_regular_market_hours": false,
"is_system_event_end_of_regular_market_hours": false,
"is_system_event_end_of_system_hours": false,
"is_system_event_end_of_messages": false
},
{
"timestamp_nanos": 1747920600000295862,
"timestamp": "2025-05-22T13:30:00.0002958Z",
"system_event": 82,
"system_event_code": "R",
"system_event_text": "Start of Regular Market Hours – This message indicates that DAY and GTX orders, as well as market orders and pegged orders, are available for execution on IEX.",
"is_system_event_start_of_messages": false,
"is_system_event_start_of_system_hours": false,
"is_system_event_start_of_regular_market_hours": true,
"is_system_event_end_of_regular_market_hours": false,
"is_system_event_end_of_system_hours": false,
"is_system_event_end_of_messages": false
},
{
"timestamp_nanos": 1747944000000570681,
"timestamp": "2025-05-22T20:00:00.0005706Z",
"system_event": 77,
"system_event_code": "M",
"system_event_text": "End of Regular Market Hours – This message indicates that DAY orders, market orders, and pegged orders are no longer accepted by IEX.",
"is_system_event_start_of_messages": false,
"is_system_event_start_of_system_hours": false,
"is_system_event_start_of_regular_market_hours": false,
"is_system_event_end_of_regular_market_hours": true,
"is_system_event_end_of_system_hours": false,
"is_system_event_end_of_messages": false
},
{
"timestamp_nanos": 1747947600000457457,
"timestamp": "2025-05-22T21:00:00.0004574Z",
"system_event": 69,
"system_event_code": "E",
"system_event_text": "End of System Hours – This message indicates that IEX is now closed and will not accept any new orders during this trading session. It is still possible to receive messages after the end of day.",
"is_system_event_start_of_messages": false,
"is_system_event_start_of_system_hours": false,
"is_system_event_start_of_regular_market_hours": false,
"is_system_event_end_of_regular_market_hours": false,
"is_system_event_end_of_system_hours": true,
"is_system_event_end_of_messages": false
},
{
"timestamp_nanos": 1747948200009636219,
"timestamp": "2025-05-22T21:10:00.0096362Z",
"system_event": 67,
"system_event_code": "C",
"system_event_text": "End of Messages – This is always the last message sent in any trading session.",
"is_system_event_start_of_messages": false,
"is_system_event_start_of_system_hours": false,
"is_system_event_start_of_regular_market_hours": false,
"is_system_event_end_of_regular_market_hours": false,
"is_system_event_end_of_system_hours": false,
"is_system_event_end_of_messages": true
}
]
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9800/obtener+eventos+del+sistema.?date=2025-05-22' --header 'Authorization: Bearer YOUR_API_KEY'
Obtener Comerciales
Obtener comercios. - Características del Endpoint
Objeto | Descripción |
---|---|
date |
[Requerido] |
symbol |
[Requerido] |
[
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745238515142005512,
"timestamp": "2025-04-21T12:28:35.1420055Z",
"size": 35,
"price": 231.9,
"trade_id": 3637,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745238543224821905,
"timestamp": "2025-04-21T12:29:03.2248219Z",
"size": 35,
"price": 232.08,
"trade_id": 3679,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745238554024065629,
"timestamp": "2025-04-21T12:29:14.0240656Z",
"size": 4,
"price": 232.08,
"trade_id": 3687,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745238772405560296,
"timestamp": "2025-04-21T12:32:52.4055602Z",
"size": 17,
"price": 232.05,
"trade_id": 4033,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745239970151741638,
"timestamp": "2025-04-21T12:52:50.1517416Z",
"size": 15,
"price": 231.22,
"trade_id": 6055,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745240233765060580,
"timestamp": "2025-04-21T12:57:13.7650605Z",
"size": 35,
"price": 231.46,
"trade_id": 6437,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745240875814839621,
"timestamp": "2025-04-21T13:07:55.8148396Z",
"size": 35,
"price": 230.79,
"trade_id": 7426,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745240875814839621,
"timestamp": "2025-04-21T13:07:55.8148396Z",
"size": 65,
"price": 230.79,
"trade_id": 7427,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745240882092216235,
"timestamp": "2025-04-21T13:08:02.0922162Z",
"size": 35,
"price": 230.83,
"trade_id": 7435,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745240882092216235,
"timestamp": "2025-04-21T13:08:02.0922162Z",
"size": 65,
"price": 230.83,
"trade_id": 7436,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745240882093496384,
"timestamp": "2025-04-21T13:08:02.0934963Z",
"size": 35,
"price": 230.88,
"trade_id": 7437,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745241788097883926,
"timestamp": "2025-04-21T13:23:08.0978839Z",
"size": 35,
"price": 231.09,
"trade_id": 8614,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745241788098384663,
"timestamp": "2025-04-21T13:23:08.0983846Z",
"size": 50,
"price": 231.09,
"trade_id": 8615,
"is_intermarket_sweep": true,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745241788098772528,
"timestamp": "2025-04-21T13:23:08.0987725Z",
"size": 70,
"price": 231.09,
"trade_id": 8616,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745241788098822746,
"timestamp": "2025-04-21T13:23:08.0988227Z",
"size": 45,
"price": 231.09,
"trade_id": 8617,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745241788098909740,
"timestamp": "2025-04-21T13:23:08.0989097Z",
"size": 50,
"price": 231.11,
"trade_id": 8618,
"is_intermarket_sweep": true,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745241788099635075,
"timestamp": "2025-04-21T13:23:08.0996350Z",
"size": 50,
"price": 231.11,
"trade_id": 8619,
"is_intermarket_sweep": true,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745241811532005057,
"timestamp": "2025-04-21T13:23:31.5320050Z",
"size": 48,
"price": 231.19,
"trade_id": 8675,
"is_intermarket_sweep": true,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745241811532233931,
"timestamp": "2025-04-21T13:23:31.5322339Z",
"size": 52,
"price": 231.19,
"trade_id": 8676,
"is_intermarket_sweep": true,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745241811532233931,
"timestamp": "2025-04-21T13:23:31.5322339Z",
"size": 48,
"price": 231.19,
"trade_id": 8677,
"is_intermarket_sweep": true,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745241811532266716,
"timestamp": "2025-04-21T13:23:31.5322667Z",
"size": 100,
"price": 231.19,
"trade_id": 8678,
"is_intermarket_sweep": true,
"is_extended_hours_trade": true,
"is_odd_lot_trade": false,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745242195579352212,
"timestamp": "2025-04-21T13:29:55.5793522Z",
"size": 100,
"price": 230.29,
"trade_id": 9250,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": false,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745242195580021332,
"timestamp": "2025-04-21T13:29:55.5800213Z",
"size": 100,
"price": 230.29,
"trade_id": 9251,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": false,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745242195581326399,
"timestamp": "2025-04-21T13:29:55.5813263Z",
"size": 100,
"price": 230.3,
"trade_id": 9252,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": false,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745242195692835402,
"timestamp": "2025-04-21T13:29:55.6928354Z",
"size": 23,
"price": 230.29,
"trade_id": 9254,
"is_intermarket_sweep": false,
"is_extended_hours_trade": true,
"is_odd_lot_trade": true,
"is_trade_through_exempt": false,
"is_single_price_cross_trade": false
},
{
"is_trade_break": false,
"symbol": "TSLA",
"timestamp_nanos": 1745242197244744803,
"timestamp": "2025-04-21T13:29:57.2447448Z",
"size": 55,
"price"...
curl --location --request GET 'https://zylalabs.com/api/6639/api+de+acciones+de+finfeed+api/9801/obtener+comercios.?date=2025-04-21&symbol=Required' --header 'Authorization: Bearer YOUR_API_KEY'
Encabezado | Descripción |
---|---|
Autorización
|
[Requerido] Debería ser Bearer access_key . Consulta "Tu Clave de Acceso a la API" arriba cuando estés suscrito. |
Sin compromiso a largo plazo. Mejora, reduce o cancela en cualquier momento. La Prueba Gratuita incluye hasta 50 solicitudes.
At present, FinFeedAPI supports ca. 25 various stock exchanges. Use the /v1/symbols or /v1/symbols/{exchange_id} endpoints to retrieve a full list of supported symbols.
All endpoints return data in application/json. Responses are arrays of objects conforming to clearly defined schemas. Timestamps are in UTC ISO 8601 format, and nanosecond timestamps are provided for high-resolution event ordering.
All endpoints accept a date query parameter in ISO format (YYYY-MM-DD) to specify the trading day. If omitted, the API returns the latest available data.
FinFeedAPI offers: Level 1: Top-of-book quotes (/v1/native/iex/level1-quote/{symbol}) Level 2: Price level updates with aggregate sizes (/v1/native/iex/level2-price-level-update/{symbol}) Level 3: Full order book events including add, modify, delete, execution, and clear book messages (/v1/native/iex/level3-order-book/{symbol})
The /v1/native/iex/admin/messages/{symbol} endpoint provides: Trading status Official open/close prices Security events Auction info (opening/closing/IPO) Halt statuses Retail liquidity indicators System events Security directory data Each record contains nanosecond-resolution timestamps and contextual flags.
Use the /v1/native/iex/admin/system-event endpoint. This returns messages like: Start of system/regular hours End of trading session End of message stream All events include timestamps and machine-readable flags.
Yes. Use: GET /v1/symbols – for all IEX symbols GET /v1/symbols/{exchange_id} – for symbols by exchange The response includes metadata such as: Symbol ID Security name Category (e.g. Common Stock) Lit status Trading availability
Our Software Development Kit (SDK) is available on GitHub at https://github.com/api-bricks/api-bricks-sdk/tree/master/finfeedapi. If possible then we are strongly recommending using our tested libraries available on GitHub, rather than creating new ones. However, if you decide to create your implementation or to change the existing one, then we encourage you to create a Pull Request to our main repository with the proposed changes, we will able to include your code in our official repository for use by other users, effectively creating collaboration.
The OHLCV endpoints return historical data including Open, High, Low, Close prices, Volume traded, and the number of trades for specified symbols and exchanges. Each data point includes timestamps and price metrics, allowing for comprehensive market analysis.
The historical trades response includes fields such as trade_id, timestamp (both standard and nanoseconds), trade size, price, and flags indicating trade conditions (e.g., is_trade_break). This detailed information supports in-depth market analysis.
Users can customize requests by specifying parameters like period_id for time intervals, time_start and time_end for date ranges, and limit to control the number of returned data points. This flexibility allows tailored data retrieval based on specific needs.
The metadata endpoints provide information about supported exchanges and symbols, including exchange_id, market names, symbol categories, and trading availability. This data aids in understanding the trading landscape and available assets.
The Level-3 Order Book response is organized as a stream of events detailing order actions such as add, modify, delete, and execution. Each event includes relevant details like order_id, size, price, and timestamps, facilitating real-time order book reconstruction.
The FinFeed API sources its data directly from leading US, European, and Asian exchanges, ensuring high accuracy and reliability. This direct feed allows for real-time and historical data access, maintaining data integrity for users.
Typical use cases include detailed market analysis, algorithmic trading strategies, and backtesting trading models. Users can reconstruct market events, analyze trade patterns, and assess market behavior over specific periods using the granular data provided.
Users can leverage the returned data for various analyses, such as trend identification, performance evaluation, and risk assessment. By integrating this data into analytical tools or trading algorithms, users can make informed trading decisions based on historical performance.
Zyla API Hub es como una gran tienda de APIs, donde puedes encontrar miles de ellas en un solo lugar. También ofrecemos soporte dedicado y monitoreo en tiempo real de todas las APIs. Una vez que te registres, puedes elegir qué APIs quieres usar. Solo recuerda que cada API necesita su propia suscripción. Pero si te suscribes a varias, usarás la misma clave para todas, lo que hace todo más fácil para ti.
Los precios se muestran en USD (dólar estadounidense), EUR (euro), CAD (dólar canadiense), AUD (dólar australiano) y GBP (libra esterlina). Aceptamos todas las principales tarjetas de débito y crédito. Nuestro sistema de pago utiliza la última tecnología de seguridad y está respaldado por Stripe, una de las compañías de pago más confiables del mundo. Si tienes algún problema para pagar con tarjeta, contáctanos en [email protected]
Además, si ya tienes una suscripción activa en cualquiera de estas monedas (USD, EUR, CAD, AUD, GBP), esa moneda se mantendrá para suscripciones posteriores. Puedes cambiar la moneda en cualquier momento siempre que no tengas suscripciones activas.
La moneda local que aparece en la página de precios se basa en el país de tu dirección IP y se proporciona solo como referencia. Los precios reales están en USD (dólar estadounidense). Cuando realices un pago, el cargo aparecerá en tu estado de cuenta en USD, incluso si ves el monto equivalente en tu moneda local en nuestro sitio web. Esto significa que no puedes pagar directamente en tu moneda local.
Ocasionalmente, un banco puede rechazar el cargo debido a sus configuraciones de protección contra fraude. Te sugerimos comunicarte con tu banco primero para verificar si están bloqueando nuestros cargos. También puedes acceder al Portal de Facturación y cambiar la tarjeta asociada para realizar el pago. Si esto no funciona y necesitas más ayuda, por favor contacta a nuestro equipo en [email protected]
Los precios se determinan mediante una suscripción recurrente mensual o anual, dependiendo del plan elegido.
Las llamadas a la API se descuentan de tu plan en base a solicitudes exitosas. Cada plan incluye una cantidad específica de llamadas que puedes realizar por mes. Solo las llamadas exitosas, indicadas por una respuesta con estado 200, se contarán en tu total. Esto asegura que las solicitudes fallidas o incompletas no afecten tu cuota mensual.
Zyla API Hub funciona con un sistema de suscripción mensual recurrente. Tu ciclo de facturación comenzará el día en que compres uno de los planes de pago, y se renovará el mismo día del mes siguiente. Así que recuerda cancelar tu suscripción antes si quieres evitar futuros cargos.
Para actualizar tu plan de suscripción actual, simplemente ve a la página de precios de la API y selecciona el plan al que deseas actualizarte. La actualización será instantánea, permitiéndote disfrutar inmediatamente de las funciones del nuevo plan. Ten en cuenta que las llamadas restantes de tu plan anterior no se transferirán al nuevo plan, por lo que debes considerar esto al actualizar. Se te cobrará el monto total del nuevo plan.
Para verificar cuántas llamadas a la API te quedan en el mes actual, revisa el campo 'X-Zyla-API-Calls-Monthly-Remaining' en el encabezado de la respuesta. Por ejemplo, si tu plan permite 1,000 solicitudes por mes y has usado 100, este campo mostrará 900 llamadas restantes.
Para ver el número máximo de solicitudes a la API que permite tu plan, revisa el encabezado de la respuesta 'X-Zyla-RateLimit-Limit'. Por ejemplo, si tu plan incluye 1,000 solicitudes por mes, este encabezado mostrará 1,000.
El encabezado 'X-Zyla-RateLimit-Reset' muestra el número de segundos hasta que tu límite se restablezca. Esto te indica cuándo tu conteo de solicitudes se reiniciará. Por ejemplo, si muestra 3,600, significa que faltan 3,600 segundos para que el límite se restablezca.
Sí, puedes cancelar tu plan en cualquier momento desde tu cuenta, seleccionando la opción de cancelación en la página de Facturación. Ten en cuenta que las actualizaciones, degradaciones y cancelaciones tienen efecto inmediato. Además, al cancelar ya no tendrás acceso al servicio, incluso si te quedaban llamadas en tu cuota.
Puedes contactarnos a través de nuestro canal de chat para recibir asistencia inmediata. Siempre estamos en línea de 8 a. m. a 5 p. m. (EST). Si nos contactas fuera de ese horario, te responderemos lo antes posible. Además, puedes escribirnos por correo electrónico a [email protected]
Para darte la oportunidad de probar nuestras APIs sin compromiso, ofrecemos una prueba gratuita de 7 días que te permite realizar hasta 50 llamadas a la API sin costo. Esta prueba solo se puede usar una vez, por lo que recomendamos aplicarla a la API que más te interese. Aunque la mayoría de nuestras APIs ofrecen prueba gratuita, algunas pueden no hacerlo. La prueba finaliza después de 7 días o cuando realices 50 solicitudes, lo que ocurra primero. Si alcanzas el límite de 50 solicitudes durante la prueba, deberás "Iniciar tu Plan de Pago" para continuar haciendo solicitudes. Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios. Alternativamente, si no cancelas tu suscripción antes del día 7, tu prueba gratuita finalizará y tu plan se cobrará automáticamente, otorgándote acceso a todas las llamadas a la API especificadas en tu plan. Ten esto en cuenta para evitar cargos no deseados.
Después de 7 días, se te cobrará el monto total del plan al que estabas suscrito durante la prueba. Por lo tanto, es importante cancelar antes de que finalice el periodo de prueba. No se aceptan solicitudes de reembolso por olvidar cancelar a tiempo.
Cuando te suscribes a una prueba gratuita de una API, puedes realizar hasta 50 llamadas. Si deseas realizar más llamadas después de este límite, la API te pedirá que "Inicies tu Plan de Pago". Puedes encontrar el botón "Iniciar tu Plan de Pago" en tu perfil bajo Suscripción -> Elige la API a la que estás suscrito -> Pestaña de Precios.
Las Órdenes de Pago se procesan entre el día 20 y el 30 de cada mes. Si envías tu solicitud antes del día 20, tu pago será procesado dentro de ese período.
Nivel de Servicio:
100%
Tiempo de Respuesta:
567ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
462ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
578ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
943ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
118ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
1.301ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
1.353ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
1.412ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
1.953ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
730ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
3.501ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
557ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
3.338ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
220ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
1.942ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
760ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
3.445ms
Nivel de Servicio:
99%
Tiempo de Respuesta:
1.816ms
Nivel de Servicio:
69%
Tiempo de Respuesta:
668ms
Nivel de Servicio:
100%
Tiempo de Respuesta:
157ms