API de ações FinFeed API

Dados brutos do mercado de ações T+1 das principais bolsas dos EUA Europa e Ásia entregues com uma REST simples amigável para desenvolvedores
Use esta API do seu agente de IA via MCP
Funciona com OpenClaw, Claude Code/Desktop, Cursor, Windsurf, Cline e qualquer cliente de IA compatível com MCP.
Docs e configuração
Crie uma skill envolvendo este MCP: https://mcp.zylalabs.com/mcp?apikey=YOUR_ZYLA_API_KEY

Stock API is a version 1 (v1) RESTful service designed to provide programmatic access to historical stock market data. As detailed in the OpenAPI 3.0.1 specification. It primarily delivers data in JSON format, though some endpoints offer text/plain or text/json alternatives. Access to the API endpoints requires authentication using an API Key provided in the Authorization header. The API offers a range of functionalities, categorized into retrieving aggregated OHLCV timeseries data, accessing metadata about exchanges and symbols, and querying highly granular, native historical data from the IEX exchange.

OHLCV Timeseries Data

One of primary functions of this API is to provide historical Open, High, Low, Close, and Volume (OHLCV) data, commonly used for charting, reporting, and market overview analysis.

Data Retrieval

Users can fetch historical OHLCV data in several ways:

  • For a specific symbol on a specific exchange using the /v1/ohlcv/exchange-symbol/{exchange_id}/{symbol_id}/history endpoint. exchange_id and symbol_id are path parameters, obtainable from the metadata endpoints.
  • Aggregated for an entire exchange using the /v1/ohlcv/exchange/{exchange_id}/history endpoint.
  • The latest available data points (descending order) for a specific symbol using the /v1/ohlcv/exchange-symbol/{exchange_id}/{symbol_id}/latest endpoint, which acts as a shortcut to the historical endpoint. Note that this "latest" data might have a slight delay compared to real-time streams.

Parameters

These endpoints require the period_id query parameter to specify the time interval. Optional parameters include time_start and time_end (in ISO 8601 format) to define the date range, and limit to specify the maximum number of data points to return (default 100, max 100,000). Historical data is returned in time-ascending order.

Data Points

Each timeseries item returned includes:

  • time_period_start and time_period_end (ISO 8601 timestamp)
  • time_open and time_close (ISO 8601 timestamp, nullable)
  • price_openprice_highprice_lowprice_close (double, nullable)
  • volume_traded (double)
  • trades_count (integer)
  • For the exchange-aggregated endpoint, it also includes symbol_id_exchange.

Supported Periods

The API supports a wide range of time periods for OHLCV aggregation. These can be queried via the /v1/ohlcv/periods endpoint. Supported units include Seconds (1SEC to 30SEC), Minutes (1MIN to 30MIN), Hours (1HRS to 12HRS), Days (1DAY to 10DAY), Months (1MTH to 6MTH), and Years (1YRS to 5YRS). The response details the period_idlength_secondslength_monthsunit_countunit_name, and display_name for each supported period.

Metadata Access

To facilitate data discovery, the API provides endpoints for retrieving metadata about supported exchanges and symbols.

  • Exchanges: The /v1/exchanges endpoint lists all available exchanges. The response includes details for each exchange such as exchange_idmicoperating_micmarket_name_institution_descriptionlegal_entity_nameacronymiso_country_codecitywebsite, and status.
  • Symbols: For a given exchange, the /v1/symbols/{exchange_id} endpoint lists all available symbols traded on that exchange. The response for each symbol includes symbol_idexchange_idsecurity_categoryname, and the date the information pertains to.

Deep Dive: Stock Native Historical Data

A significant portion of the API is dedicated to providing highly detailed, nanosecond-precision historical data sourced directly from the stock exchange feed. These endpoints allow for in-depth analysis and reconstruction of market events for specific symbols on specific dates. The date parameter (YYYY-MM-DD format) is required for these endpoints.

Historical Trades

The /v1/native/iex/trade/{symbol} endpoint retrieves individual trade reports and trade breaks for a given symbol and date. Each record indicates if it's a trade break (is_trade_break), provides nanosecond (timestamp_nanos) and standard (timestamp) timestamps, trade size and price, the unique trade_id (linking reports and breaks), and several condition flags: is_intermarket_sweepis_extended_hours_tradeis_odd_lot_tradeis_trade_through_exempt, and is_single_price_cross_trade.

Level-3 Order Book

The /v1/native/iex/level3-order-book/{symbol} endpoint provides the necessary data to reconstruct the full depth order book historically. It returns a stream of events including:

  • add_order: Details a new order added to the book, including side (is_side_buy), sizepriceorder_id, and nanosecond timestamp.
  • delete_order: Indicates an order cancellation referencing the order_id_reference and timestamp.
  • modify_order: Shows order modifications with order_id_reference, new sizeprice, priority reset status (is_priority_reset), and timestamp.
  • executed_order: Reports a trade execution against a resting order, referencing the order_id_reference, executed sizepricetrade_id, sale condition flags, and timestamp.
  • clear_book: Indicates the order book for the symbol was cleared at the given timestamp.

Level-2 Price Level Updates

For aggregated depth information, the /v1/native/iex/level2-price-level-update/{symbol} endpoint provides historical updates to price levels. It returns the aggregate quoted size at a specific price level for either the buy or sell side (is_side_buy), along with the event timestamp (nanos and standard).

Level-1 Quotes

The /v1/native/iex/level1-quote/{symbol} endpoint delivers historical top-of-book quote updates. It provides the best bid_price and bid_size, alongside the best ask_price and ask_size, with associated timestamps (nanos and standard). It also includes flags indicating if the symbol was available for trading and if the quote occurred during pre/post-market sessions.

Administrative Messages

The /v1/native/iex/admin/messages/{symbol} endpoint offers a rich set of administrative and status messages for a symbol and date. This includes:

  • trading_status: Indicates if trading is live, halted, paused, or in an order acceptance period, along with detailed reason codes (e.g., news pending, IPO related, market-wide circuit breaker levels).
  • official_price: Provides official opening ('Q') and closing ('M') prices.
  • security_event: Signals opening ('O') or closing ('C') process completion.
  • auction_information: Details for opening, closing, IPO, halt, or volatility auctions, including type, paired shares, reference price, indicative clearing price, imbalance shares and side, extension number, scheduled time, and collar prices.
  • short_sale_price_test: Status and details of Short Sale Rule restrictions (activated, continued, deactivated).
  • operational_halt_status: Indicates IEX specific operational halts.
  • retail_liquidity_indicator: Shows retail buy/sell interest indication.
  • security_directory: Provides reference data like round_lot_size, adjusted POC price, and LULD tier (Limit Up/Limit Down).

System Events

The /v1/native/iex/admin/system-event endpoint retrieves market-wide system events for a specific date. This includes timestamps (nanos and standard) for events like Start/End of Messages, Start/End of System Hours, and Start/End of Regular Market Hours, along with descriptive text.

 

Documentação da API

Endpoints


Lista de bolsas



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9790/list+of+exchanges
                                                                            
                                                                        

Testar endpoint

RESPOSTA DE EXEMPLO DA API

       
                                                                                                        
                                                                                                                                                                                                                                                                                                                                        [
  {
    "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"},{"_note":"Response truncated for documentation purposes"}]
                                                                                                                                                                                                                    
                                                                                                    

Lista de Trocas - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9790/list+of+exchanges' --header 'Authorization: Bearer YOUR_API_KEY' 


    

Lista de Símbolos para a Troca



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9791/list+of+symbols+for+the+exchange
                                                                            
                                                                        

Testar endpoint

RESPOSTA DE EXEMPLO DA API

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

Lista de Símbolos para a Bolsa - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9791/list+of+symbols+for+the+exchange&exchange_id=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    

OHLCV - Dados mais recentes



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9792/ohlcv+-+latest+data
                                                                            
                                                                        

OHLCV - Dados mais recentes - Recursos do endpoint

Objeto Descrição
period_id [Obrigatório]
exchange_id [Obrigatório]
symbol_id [Obrigatório]
Testar endpoint

RESPOSTA DE EXEMPLO DA API

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

OHLCV - Dados mais recentes - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9792/ohlcv+-+latest+data?period_id=1DAY&exchange_id=Required&/=Required&symbol_id=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    

OHLCV - Listar todos os períodos



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9793/ohlcv+-+list+all+periods
                                                                            
                                                                        

Testar endpoint

RESPOSTA DE EXEMPLO DA API

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

OHLCV - Listar todos os períodos - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9793/ohlcv+-+list+all+periods' --header 'Authorization: Bearer YOUR_API_KEY' 


    

OHLCV - Dados históricos



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9794/ohlcv+-+historical+data
                                                                            
                                                                        

OHLCV - Dados históricos - Recursos do endpoint

Objeto Descrição
period_id [Obrigatório]
time_start Opcional
time_end Opcional
exchange_id [Obrigatório]
symbol_id [Obrigatório]
Testar endpoint

RESPOSTA DE EXEMPLO DA API

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

OHLCV - Dados históricos - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9794/ohlcv+-+historical+data?period_id=1DAY&time_start=2025-05-22T00:00:00&exchange_id=Required&/=Required&symbol_id=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    

OHLCV - Dados históricos por exchange



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9795/ohlcv+-+historical+data+by+exchange
                                                                            
                                                                        

OHLCV - Dados históricos por bolsa - Recursos do endpoint

Objeto Descrição
period_id [Obrigatório]
time_start [Obrigatório]
time_end [Obrigatório]
exchange_id [Obrigatório]
Testar endpoint

RESPOSTA DE EXEMPLO DA API

       
                                                                                                        
                                                                                                                                                                                                                                                                                                                                        [
  {
    "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},{"_note":"Response truncated for documentation purposes"}]
                                                                                                                                                                                                                    
                                                                                                    

OHLCV - Dados históricos por bolsa - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9795/ohlcv+-+historical+data+by+exchange?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' 


    

Obter Mensagens de Admin



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9796/get+admin+messages
                                                                            
                                                                        

Obter Mensagens de Admin - Recursos do endpoint

Objeto Descrição
date [Obrigatório]
symbol [Obrigatório]
Testar endpoint

RESPOSTA DE EXEMPLO DA API

       
                                                                                                        
                                                                                                                                                                                                                                                                                                                                        [
  {
    "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}},{"_note":"Response truncated for documentation purposes"}]
                                                                                                                                                                                                                    
                                                                                                    

Obter Mensagens de Admin - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9796/get+admin+messages?date=2024-04-01&symbol=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    

Obter Livro de Ordens de Nível 3



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9797/get+level-3+order+book
                                                                            
                                                                        

Obter Livro de Ordens Nível 3 - Recursos do endpoint

Objeto Descrição
date [Obrigatório]
symbol [Obrigatório]
Testar endpoint

RESPOSTA DE EXEMPLO DA API

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

Obter Livro de Ordens Nível 3 - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9797/get+level-3+order+book?date=2025-05-28&symbol=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    

Obter Livro de Preços Nível-2



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9798/get+level-2+price+level+book
                                                                            
                                                                        

Obter Livro de Nível de Preço Nível 2 - Recursos do endpoint

Objeto Descrição
date [Obrigatório]
symbol [Obrigatório]
Testar endpoint

RESPOSTA DE EXEMPLO DA API

       
                                                                                                        
                                                                                                                                                                                                                                                                                                                                        [
  {
    "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"},{"_note":"Response truncated for documentation purposes"}]
                                                                                                                                                                                                                    
                                                                                                    

Obter Livro de Nível de Preço Nível 2 - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9798/get+level-2+price+level+book?date=2025-05-28&symbol=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    

Obter Cotações de Nível 1



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9799/get+level-1+quotes
                                                                            
                                                                        

Obter Cotações de Nível 1 - Recursos do endpoint

Objeto Descrição
date [Obrigatório]
symbol [Obrigatório]
Testar endpoint

RESPOSTA DE EXEMPLO DA API

       
                                                                                                        
                                                                                                                                                                                                                                                                                                                                        [
  {
    "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},{"_note":"Response truncated for documentation purposes"}]
                                                                                                                                                                                                                    
                                                                                                    

Obter Cotações de Nível 1 - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9799/get+level-1+quotes?date=2025-05-01&symbol=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    

Obter Eventos do Sistema



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9800/get+system+events
                                                                            
                                                                        

Obter Eventos do Sistema - Recursos do endpoint

Objeto Descrição
date [Obrigatório]
Testar endpoint

RESPOSTA DE EXEMPLO DA API

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

Obter Eventos do Sistema - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9800/get+system+events?date=2025-05-22' --header 'Authorization: Bearer YOUR_API_KEY' 


    

Obter Negócios



                                                                            
GET https://zylalabs.com/api/6639/finfeed+api+stock+api/9801/get+trades
                                                                            
                                                                        

Obter Negócios - Recursos do endpoint

Objeto Descrição
date [Obrigatório]
symbol [Obrigatório]
Testar endpoint

RESPOSTA DE EXEMPLO DA API

       
                                                                                                        
                                                                                                                                                                                                                                                                                                                                        [
  {
    "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},{"_note":"Response truncated for documentation purposes"}]
                                                                                                                                                                                                                    
                                                                                                    

Obter Negócios - TRECHOS DE CÓDIGO


curl --location --request GET 'https://zylalabs.com/api/6639/finfeed+api+stock+api/9801/get+trades?date=2025-04-21&symbol=Required' --header 'Authorization: Bearer YOUR_API_KEY' 


    

Chave de acesso à API e autenticação

Após se cadastrar, cada desenvolvedor recebe uma chave de acesso à API pessoal, uma combinação única de letras e dígitos para acessar nosso endpoint de API. Para autenticar com a API de ações FinFeed API basta incluir seu token Bearer no cabeçalho Authorization.
Cabeçalhos
Cabeçalho Descrição
Authorization [Obrigatório] Deve ser Bearer access_key. Veja "Sua chave de acesso à API" acima quando você estiver inscrito.

Preços simples e transparentes

Sem compromisso de longo prazo. Faça upgrade, downgrade ou cancele a qualquer momento. O teste gratuito inclui até 50 requisições.

🚀 Empresarial

A partir de
$ 10.000/Ano


  • Volume personalizado
  • Limite de taxa personalizado
  • Suporte ao cliente especializado
  • Monitoramento de API em tempo real

Recursos favoritos dos clientes

  • ✔︎ Pague apenas por requisições bem-sucedidas
  • ✔︎ Teste 7 dias gratis
  • ✔︎ Suporte multilíngue
  • ✔︎ Uma chave de API, todas as APIs.
  • ✔︎ Painel intuitivo
  • ✔︎ Tratamento de erros abrangente
  • ✔︎ Documentação amigável para desenvolvedores
  • ✔︎ Integração com Postman
  • ✔︎ Conexões HTTPS seguras
  • ✔︎ Alta disponibilidade

API de ações FinFeed API FAQs

Atualmente, o FinFeedAPI suporta aproximadamente 25 bolsas de valores diferentes. Use os endpoints /v1/symbols ou /v1/symbols/{exchange_id} para recuperar uma lista completa de símbolos suportados

Todos os endpoints retornam dados em application/json Respostas são arrays de objetos que seguem esquemas claramente definidos Carimbos de data e hora estão no formato UTC ISO 8601 e carimbos de data e hora em nanossegundos são fornecidos para ordenação de eventos de alta resolução

Todos os endpoints aceitam um parâmetro de consulta de data no formato ISO (AAAA-MM-DD) para especificar o dia de negociação Se omitido a API retorna os dados mais recentes disponíveis

FinFeedAPI oferece: Nível 1: Cotações de top-of-book (/v1/native/iex/level1-quote/{symbol}) Nível 2: Atualizações de níveis de preços com tamanhos agregados (/v1/native/iex/level2-price-level-update/{symbol}) Nível 3: Eventos completos do livro de ordens incluindo adicionar, modificar, excluir, execução e mensagens de limpar livro (/v1/native/iex/level3-order-book/{symbol})

O endpoint /v1/native/iex/admin/messages/{symbol} fornece Status de negociação Preços oficiais de abertura/fechamento Eventos de segurança Informações de leilão (abertura/fechamento/IPO) Status de interrupção Indicadores de liquidez de varejo Eventos do sistema Dados do diretório de segurança Cada registro contém timestamps com resolução em nanossegundos e flags contextuais

Use o endpoint /v1/native/iex/admin/system-event Isso retorna mensagens como: Início do horário regular do sistema Fim da sessão de negociação Fim do fluxo de mensagens Todos os eventos incluem marcas de tempo e sinalizadores legíveis por máquina

Sim. Use: GET /v1/symbols – para todos os símbolos IEX GET /v1/symbols/{exchange_id} – para símbolos por bolsa A resposta inclui metadados como: ID do símbolo Nome da segurança Categoria (por exemplo, Ação Ordinária) Status de liquidez Disponibilidade para negociação

Nosso Kit de Desenvolvimento de Software (SDK) está disponível no GitHub em https://github.com/api-bricks/api-bricks-sdk/tree/master/finfeedapi Se possível, recomendamos fortemente o uso de nossas bibliotecas testadas disponíveis no GitHub, em vez de criar novas No entanto, se você decidir criar sua implementação ou mudar a existente, incentivamos você a criar um Pull Request para o nosso repositório principal com as alterações propostas, poderemos incluir seu código em nosso repositório oficial para uso por outros usuários, criando efetivamente colaboração

Os endpoints OHLCV retornam dados históricos incluindo preços de Abertura, Máxima, Mínima, Fechamento, Volume negociado e o número de negociações para símbolos e bolsas especificados. Cada ponto de dados inclui timestamps e métricas de preço permitindo uma análise de mercado abrangente

A resposta de negociações históricas inclui campos como trade_id, timestamp (tanto padrão quanto em nanossegundos), tamanho da negociação, preço e bandeiras indicando as condições da negociação (por exemplo, is_trade_break). Essas informações detalhadas suportam uma análise de mercado aprofundada

Os usuários podem personalizar solicitações especificando parâmetros como period_id para intervalos de tempo, time_start e time_end para intervalos de datas, e limit para controlar o número de pontos de dados retornados Essa flexibilidade permite a recuperação de dados sob medida com base em necessidades específicas

Os endpoints de metadados fornecem informações sobre as trocas e símbolos suportados, incluindo exchange_id, nomes de mercado, categorias de símbolos e disponibilidade de negociação. Esses dados ajudam a entender o cenário de negociação e os ativos disponíveis

A resposta do Livro de Ordens de Nível 3 é organizada como um fluxo de eventos detalhando ações de ordens como adicionar modificar excluir e execução Cada evento inclui detalhes relevantes como order_id tamanho preço e timestamps facilitando a reconstrução do livro de ordens em tempo real

A API FinFeed obtém seus dados diretamente de principais bolsas dos EUA, Europa e Ásia, garantindo alta precisão e confiabilidade Este feed direto permite acesso a dados em tempo real e históricos, mantendo a integridade dos dados para os usuários

Os casos de uso típicos incluem análise de mercado detalhada, estratégias de negociação algoritmica e testes de retorno de modelos de negociação. Os usuários podem reconstruir eventos do mercado, analisar padrões de negociação e avaliar o comportamento do mercado ao longo de períodos específicos usando os dados granulares fornecidos

Os usuários podem aproveitar os dados retornados para várias análises, como identificação de tendências, avaliação de desempenho e análise de risco. Ao integrar esses dados em ferramentas analíticas ou algoritmos de negociação, os usuários podem tomar decisões de negociação informadas com base no desempenho histórico

Perguntas Frequentes Gerais

O Zyla API Hub é como uma grande loja de APIs, onde você pode encontrar milhares delas em um só lugar. Também oferecemos suporte dedicado e monitoramento em tempo real de todas as APIs. Após se cadastrar, você pode escolher quais APIs deseja usar. Lembre-se apenas de que cada API precisa de sua própria assinatura. Mas se você se inscrever em várias, usará a mesma chave para todas elas, facilitando as coisas para você.

Os preços são listados em USD (Dólar Americano), EUR (Euro), CAD (Dólar Canadense), AUD (Dólar Australiano) e GBP (Libra Esterlina). Aceitamos todos os principais cartões de débito e crédito. Nosso sistema de pagamento usa a mais recente tecnologia de segurança e é operado pela Stripe, uma das empresas de pagamento mais confiáveis do mundo. Se tiver problemas para pagar com cartão, entre em contato conosco em [email protected]


Além disso, se você já tiver uma assinatura ativa em qualquer uma dessas moedas (USD, EUR, CAD, AUD, GBP), essa moeda será mantida para assinaturas subsequentes. Você pode alterar a moeda a qualquer momento, desde que não tenha assinaturas ativas.

A moeda local exibida na página de preços é baseada no país do seu endereço IP e é fornecida apenas como referência. Os preços reais são em USD (Dólar Americano). Ao efetuar o pagamento, a cobrança aparecerá no extrato do seu cartão em USD, mesmo que você veja o valor equivalente em sua moeda local em nosso site. Isso significa que você não pode pagar diretamente com sua moeda local.

Ocasionalmente, o banco pode recusar a cobrança devido às configurações de proteção contra fraude. Sugerimos contatar seu banco inicialmente para verificar se estão bloqueando nossas cobranças. Você também pode acessar o Portal de Cobrança e alterar o cartão associado para realizar o pagamento. Se isso não funcionar e precisar de mais ajuda, entre em contato com nossa equipe em [email protected]

Os preços são determinados por uma assinatura recorrente mensal ou anual, dependendo do plano escolhido.

As chamadas de API são descontadas do seu plano com base nas requisições bem-sucedidas. Cada plano possui um número específico de chamadas por mês. Apenas chamadas bem-sucedidas, indicadas por uma resposta com Status 200, serão contabilizadas, garantindo que falhas não afetem sua cota mensal.

O Zyla API Hub funciona com um sistema de assinatura mensal recorrente. Seu ciclo de cobrança começa no dia em que você compra um dos planos pagos e será renovado no mesmo dia do mês seguinte. Portanto, cancele sua assinatura com antecedência se quiser evitar cobranças futuras.

Para fazer upgrade do seu plano atual, acesse a página de preços da API e selecione o novo plano desejado. O upgrade é instantâneo, permitindo aproveitar imediatamente os recursos do novo plano. Observe que as chamadas restantes do plano anterior não serão transferidas; você será cobrado pelo valor integral do novo plano.

Para verificar quantas chamadas de API restam para o mês atual, consulte o campo 'X-Zyla-API-Calls-Monthly-Remaining' no cabeçalho da resposta. Por exemplo, se seu plano permite 1.000 requisições por mês e você usou 100, este campo no cabeçalho da resposta indicará 900 chamadas restantes.

Para ver o número máximo de requisições de API que seu plano permite, verifique o cabeçalho de resposta 'X-Zyla-RateLimit-Limit'. Por exemplo, se seu plano inclui 1.000 requisições por mês, este cabeçalho exibirá 1.000.

O cabeçalho 'X-Zyla-RateLimit-Reset' mostra o número de segundos até seu limite de taxa ser redefinido. Isso informa quando sua contagem de requisições começará do zero. Por exemplo, se exibir 3.600, significa que restam 3.600 segundos até o limite ser redefinido.

Sim, você pode cancelar seu plano a qualquer momento acessando sua conta e selecionando a opção de cancelamento na página de Cobrança. Observe que upgrades, downgrades e cancelamentos têm efeito imediato. Além disso, após o cancelamento, você não terá mais acesso ao serviço, mesmo que ainda tenha chamadas restantes na sua cota.

Você pode nos contatar via chat para receber assistência imediata. Estamos online de 8h às 17h (EST). Se nos contatar após esse horário, retornaremos o mais rápido possível. Além disso, você pode enviar um e-mail para [email protected]

Para oferecer a oportunidade de experimentar nossas APIs sem compromisso, oferecemos um teste gratuito de 7 dias que permite realizar até 50 chamadas de API sem custo. Esse teste pode ser usado apenas uma vez; recomendamos aplicá-lo à API que mais interessa. Embora a maioria das APIs ofereça teste gratuito, algumas podem não oferecer. O teste termina após 7 dias ou quando você atingir 50 requisições, o que ocorrer primeiro. Se atingir o limite, será necessário "Iniciar seu plano pago" para continuar. Você encontra esse botão no perfil em Assinatura -> Escolha a API -> aba Preços. Se não cancelar até o 7º dia, sua assinatura será cobrada automaticamente, liberando todas as chamadas do plano.

Após 7 dias, será cobrado o valor total do plano ao qual você estava inscrito durante o teste. Portanto, é importante cancelar antes do término do período. Solicitações de reembolso por esquecimento de cancelamento não são aceitas.

Ao assinar um teste gratuito de API, você pode fazer até 50 chamadas. Se desejar fazer chamadas adicionais além desse limite, a API solicitará que você "Inicie seu plano pago". Você encontra o botão no perfil em Assinatura -> Escolha a API -> aba Preços.

As Ordens de Pagamento são processadas entre os dias 20 e 30 de cada mês. Se você enviar sua solicitação antes do dia 20, seu pagamento será processado dentro desse período.


APIs relacionadas


Você também pode gostar