{"id":662,"date":"2026-07-22T23:31:19","date_gmt":"2026-07-23T03:31:19","guid":{"rendered":"https:\/\/www.tiingo.com\/blog\/?p=662"},"modified":"2026-07-26T09:43:56","modified_gmt":"2026-07-26T13:43:56","slug":"blue-ocean-ats-overnight-stock-data","status":"publish","type":"post","link":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/","title":{"rendered":"Blue Ocean ATS Data on Tiingo: Real-Time Overnight Stock Prices, Now for Everyone"},"content":{"rendered":"<p><img decoding=\"async\" style=\"max-width: 100%; height: auto; border-radius: 14px;\" src=\"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2026\/07\/cobrand.png\" alt=\"Tiingo and Blue Ocean ATS\" \/><\/p>\n<p><em>Overnight U.S. equity data used to be institutional-only. Starting today, anyone can get it, for $9 a month over their plan, which is at our cost.<\/em><\/p>\n<p>Exciting news! Today we&#8217;re launching the real-time Blue Ocean ATS API on Tiingo (the BOATS API): overnight stock prices for up to 12,000+ U.S. equities, delivered over REST and WebSockets. We&#8217;re the first to make this overnight U.S. equity data broadly accessible, and the first to make it available to individuals at all. The add-on is $9 a month, which is our cost ($8\/month BOATS license fee + $1\/month compliance and processing cost).<\/p>\n<h2>What Blue Ocean ATS is, and what we now deliver<\/h2>\n<p><a href=\"https:\/\/blueocean-tech.io\/\">Blue Ocean ATS<\/a> (a.k.a BOATS) runs during the overnight U.S. equity trading session, and it&#8217;s the most dominant, liquid overnight venue for U.S. stocks. The session runs from 8:00 PM to 4:00 AM ET, Sunday through Thursday.<\/p>\n<p>A quick overview on terminology: because &#8220;overnight&#8221; data is new, consider it a separate set of hours than what&#8217;s typically called &#8220;after-hours&#8221;. After-hours extends the U.S. trading day (considered 4am-9:30am and 4pm-8pm). The overnight session is the stretch between that &#8211; the overnight hours of 8pm-4am ET. And if you trade from Asia or Europe, &#8220;overnight&#8221; is your daytime &#8211; which is why BOATS is beloved by Asian and European traders in addition to US.<\/p>\n<p>Tiingo now delivers, in real time, top-of-book quotes (bid, ask, mid) and the last trade with its size. Overnight intraday OHLC too. Coverage spans up to 12,000+ U.S. NMS equities quotable on Blue Ocean ATS, over both REST and WebSockets, through the same real-time equity formats you used to with our IEX Endpoints. There is no new integration to build. Full specs live on the <a href=\"https:\/\/www.tiingo.com\/products\/boats-blue-ocean-ats-real-time-overnight-stock-prices\">Blue Ocean ATS (BOATS) product page<\/a>.<\/p>\n<h2>One request to get data &#8211; easy.<\/h2>\n<p>With a simple GET request to the Blue Ocean API, you can get the instant overnight quote for any symbol quoted. Here&#8217;s SPCX:<\/p>\n<pre style=\"background: #1b1526; color: #e9e4f4; padding: 14px 16px; border-radius: 10px; overflow: auto; font-size: 13px; line-height: 1.55;\">GET https:\/\/api.tiingo.com\/boats\/spcx<\/pre>\n<pre style=\"background: #1b1526; color: #e9e4f4; padding: 14px 16px; border-radius: 10px; overflow: auto; font-size: 13px; line-height: 1.55;\">[{\"ticker\":\"SPCX\",\"timestamp\":\"2026-07-22T20:58:18.437361794-04:00\",\"lastSaleTimestamp\":\"2026-07-22T20:58:14.670299844-04:00\",\"quoteTimestamp\":\"2026-07-22T20:58:18.437361794-04:00\",\"open\":124.165,\"high\":124.96,\"low\":114.385,\"mid\":116.81,\"tngoLast\":116.81,\"last\":116.78,\"lastSize\":47,\"bidSize\":119,\"bidPrice\":116.77,\"askPrice\":116.85,\"askSize\":160,\"prevClose\":124.155,\"volume\":4229595}]<\/pre>\n<p>Bid, ask, mid, the last trade and its size, in addition to other fields, all in one object.<\/p>\n<h2>Or stream it live<\/h2>\n<p>Want a live WebSocket feed instead? Open the WebSocket, send one subscribe message, and the trades and quotes start printing.<\/p>\n<pre style=\"background: #1b1526; color: #e9e4f4; padding: 14px 16px; border-radius: 10px; overflow: auto; font-size: 13px; line-height: 1.55;\">import orjson as json\nfrom websocket import create_connection\n\nws = create_connection(\"wss:\/\/api.tiingo.com\/boats\")\n\nT_TOKEN = 'YOUR_TOKEN_HERE'\nsubscribe = {\n    'eventName': 'subscribe',\n    'authorization': T_TOKEN,\n    'eventData': {\n        'thresholdLevel': 3,\n        # 'tickers': ['crcl']   # omit for everything; add symbols to filter\n    }\n}\n\nws.send(json.dumps(subscribe))\nwhile True:\n    data = json.loads(ws.recv())\n    print(data)<\/pre>\n<p>The stream mixes trades (&#8220;T&#8221;) and quotes (&#8220;Q&#8221;):<\/p>\n<pre style=\"background: #1b1526; color: #e9e4f4; padding: 14px 16px; border-radius: 10px; overflow: auto; font-size: 13px; line-height: 1.55;\">{'service': 'boats', 'messageType': 'A', 'data': ['T', '2026-07-22T20:59:29.135425232-04:00', 1784768369135425232, 'soxl', 167.3, 100, '@', '', '', '']}\n{'service': 'boats', 'messageType': 'A', 'data': ['Q', '2026-07-22T20:59:29.135940609-04:00', 1784768369135940609, 'amzn', 100, 242.56, 242.705, 242.85, 145]}\n{'service': 'boats', 'messageType': 'A', 'data': ['Q', '2026-07-22T20:59:29.136006950-04:00', 1784768369136006950, 'spy', 42, 748.41, 748.46, 748.51, 40]}\n{'service': 'boats', 'messageType': 'A', 'data': ['Q', '2026-07-22T20:59:29.136023427-04:00', 1784768369136023427, 'qqq', 42, 707.59, 707.64, 707.69, 1740]}\n{'service': 'boats', 'messageType': 'A', 'data': ['Q', '2026-07-22T20:59:29.140694685-04:00', 1784768369140694685, 'arm', 284, 286.0, 286.525, 287.05, 111]}\n{'service': 'boats', 'messageType': 'A', 'data': ['T', '2026-07-22T20:59:29.135679749-04:00', 1784768369135679749, 'amzn', 242.65, 31, '@', '', '', 'I']}\n# ... continues streaming<\/pre>\n<p>Leave the tickers list out and you get everything trading overnight. Add a few symbols if you want to limit the output (it&#8217;s a ton of data). That&#8217;s the entire getting-started path for the Blue Ocean API.<\/p>\n<h2>Where to read the full docs<\/h2>\n<p>The Blue Ocean ATS API is documented end to end. Every field and every message type lives in the <a href=\"https:\/\/www.tiingo.com\/documentation\/boats\">BOATS REST API docs<\/a> and the <a href=\"https:\/\/www.tiingo.com\/documentation\/websockets\/boats\">BOATS WebSocket API docs<\/a>. Grab your API token from your account page, and you can pull your first overnight quote in about two minutes.<\/p>\n<h2>How this became available to individuals<\/h2>\n<p>Until now, this data was effectively enterprise-only. If you had a licensing team and a compliance department, you could get it. Individuals were often priced out; overnight market data started as institutional agreements, and individual access was a category that hadn&#8217;t been catered to yet.<\/p>\n<p>We reached out to the BOATS team &#8211; and to their amazing credit, they retooled their market data agreements to make this possible. Really big thank you to their team for taking a modern approach to data.<\/p>\n<p>Historically, what makes market data expensive is the licensing and the rules around it, not the bytes, so a venue actually reworking those rules to reach retail is an awesome move. This launch exists because of their approach to market data rules &#8211; and modernizing them as more people are able to access and process this data. On our side, we built the compliance layer, so a solo developer doesn&#8217;t need a compliance department to subscribe. Once you answer a few questions, we automate compliance on our end for you.<\/p>\n<p>Real-time overnight data existed. Now made accessible to all.<\/p>\n<h2>How liquid is Blue Ocean ATS?<\/h2>\n<p>Given it&#8217;s an overnight exchange, we were surprised by the liquidity. From Blue Ocean market-data statistics for the overnight session of June 22, 2026:<\/p>\n<div class=\"stats\">\n<div class=\"stat\"><b>9,451<\/b><span>symbols quoted<\/span><\/div>\n<div class=\"stat\"><b>4,085<\/b><span>symbols traded<\/span><\/div>\n<div class=\"stat\"><b>$8.25B<\/b><span>notional<\/span><\/div>\n<div class=\"stat\"><b>1.57M<\/b><span>executions<\/span><\/div>\n<div class=\"stat\"><b>225M<\/b><span>shares<\/span><\/div>\n<\/div>\n<p><img decoding=\"async\" style=\"max-width: 100%; height: auto; border-radius: 12px;\" src=\"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2026\/07\/panels.png\" alt=\"Overnight notional and average quoted spread by symbol\" \/><\/p>\n<p>Here are the spreads in the names people actually trade:<\/p>\n<table class=\"tiingo-nums\">\n<thead>\n<tr>\n<th>Symbol<\/th>\n<th>Avg quoted spread (bps)<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>SPY<\/td>\n<td>1.5<\/td>\n<\/tr>\n<tr>\n<td>QQQ<\/td>\n<td>2.0<\/td>\n<\/tr>\n<tr>\n<td>NVDA<\/td>\n<td>4.8<\/td>\n<\/tr>\n<tr>\n<td>TSLA<\/td>\n<td>5.2<\/td>\n<\/tr>\n<tr>\n<td>GOOGL<\/td>\n<td>5.9<\/td>\n<\/tr>\n<tr>\n<td>MSFT<\/td>\n<td>6.2<\/td>\n<\/tr>\n<tr>\n<td>PLTR<\/td>\n<td>10.3<\/td>\n<\/tr>\n<tr>\n<td>META<\/td>\n<td>12.8<\/td>\n<\/tr>\n<tr>\n<td>AMZN<\/td>\n<td>13.4<\/td>\n<\/tr>\n<tr>\n<td>AAPL<\/td>\n<td>14.4<\/td>\n<\/tr>\n<tr>\n<td>AVGO<\/td>\n<td>15.8<\/td>\n<\/tr>\n<tr>\n<td>AMD<\/td>\n<td>24.4<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Across the 50 most-traded names by notional, the median spread was about 15 bps. Spreads naturally vary with a company&#8217;s size and liquidity, so smaller or more thinly traded names can be wider.<\/p>\n<h2>$9 a month. At cost.<\/h2>\n<p>The Blue Ocean add-on is $9 a month: $8 is Blue Ocean&#8217;s license fee, and $1 covers compliance processing. No Tiingo markup. We make essentially nothing on this, and it was important to me we make it that.<\/p>\n<p>What you need to run it: individuals need a Power plan ($30\/month) plus the $9 add-on, which comes to about $39 a month all-in. Businesses need a Commercial plan ($50\/month) plus the same $9. Enterprise and redistribution is a separate conversation, a $500\/month Tiingo fee plus a Blue Ocean license fee (contact sales@tiingo.com and we can make the introduction to the BOATS team).<\/p>\n<p>We&#8217;ve been making financial data accessible since 2014, and we&#8217;re the oldest accessible retail market-data API still around. This launch is that mission, not a new revenue line. Consider it a give-back. Full details live on the <a href=\"https:\/\/www.tiingo.com\/products\/boats-blue-ocean-ats-real-time-overnight-stock-prices\">product page<\/a>.<\/p>\n<h2>How to turn it on<\/h2>\n<ol>\n<li>Go to your Tiingo account page<\/li>\n<li>Open the <a href=\"https:\/\/www.tiingo.com\/account\/billing\/add-ons\">Entitlements page<\/a><\/li>\n<li>Fill out the short questionnaire<\/li>\n<li>Start the add-on<\/li>\n<\/ol>\n<p>You&#8217;re enabled immediately, the same day.<\/p>\n<h2>What&#8217;s next<\/h2>\n<p>This is the first article in a series on overnight data. Article 2 gets into the mechanics: how the overnight session actually works and where orders get routed. Today is just the announcement. If you want the full landscape now &#8211; every overnight venue and which data feeds carry the session &#8211; our <a href=\"https:\/\/www.tiingo.com\/blog\/overnight-stock-data-api\/\">overnight stock data API<\/a> guide breaks it all down.<\/p>\n<p>The overnight U.S. equity session is no longer something you need an institution behind you to see. It streams on the API you already use, in real time, for $9 over your plan. At cost. Because that&#8217;s the version of this industry we&#8217;ve been trying to build since 2014.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There is no official overnight U.S. equity data for individuals, until now. Tiingo brings Blue Ocean ATS overnight prices to everyone at cost, 9 dollars over your plan.<\/p>\n","protected":false},"author":1,"featured_media":660,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"osom_blocks_metabox":"","inline_featured_image":false,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[9],"tags":[],"class_list":["post-662","post","type-post","status-publish","format-standard","has-post-thumbnail","category-product-updates","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.1 (Yoast SEO v28.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Blue Ocean ATS API (BOATS): Overnight Stock Prices | Tiingo<\/title>\n<meta name=\"description\" content=\"Blue Ocean ATS (BOATS) powers real-time overnight U.S. stock trading, 8pm-4am ET. Tiingo opens the Blue Ocean API to all over REST and WebSocket, at cost.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Blue Ocean ATS Data on Tiingo: Real-Time Overnight Stock Prices, Now for Everyone\" \/>\n<meta property=\"og:description\" content=\"Blue Ocean ATS (BOATS) powers real-time overnight U.S. stock trading, 8pm-4am ET. Tiingo opens the Blue Ocean API to all over REST and WebSocket, at cost.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/\" \/>\n<meta property=\"og:site_name\" content=\"Tiingo Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/tiingofinance\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-23T03:31:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-26T13:43:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2026\/07\/cobrand.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1800\" \/>\n\t<meta property=\"og:image:height\" content=\"920\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Rishi S.\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tiingofinance\" \/>\n<meta name=\"twitter:site\" content=\"@tiingofinance\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rishi S.\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/\"},\"author\":{\"name\":\"Rishi S.\",\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/#\\\/schema\\\/person\\\/54fc93e1626ed221a37fcfddb597c3d6\"},\"headline\":\"Blue Ocean ATS Data on Tiingo: Real-Time Overnight Stock Prices, Now for Everyone\",\"datePublished\":\"2026-07-23T03:31:19+00:00\",\"dateModified\":\"2026-07-26T13:43:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/\"},\"wordCount\":1062,\"publisher\":{\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/cobrand.png\",\"articleSection\":[\"Product Updates\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/\",\"url\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/\",\"name\":\"Blue Ocean ATS API (BOATS): Overnight Stock Prices | Tiingo\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/cobrand.png\",\"datePublished\":\"2026-07-23T03:31:19+00:00\",\"dateModified\":\"2026-07-26T13:43:56+00:00\",\"description\":\"Blue Ocean ATS (BOATS) powers real-time overnight U.S. stock trading, 8pm-4am ET. Tiingo opens the Blue Ocean API to all over REST and WebSocket, at cost.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/cobrand.png\",\"contentUrl\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/cobrand.png\",\"width\":1800,\"height\":920,\"caption\":\"Tiingo and Blue Ocean ATS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/blue-ocean-ats-overnight-stock-data\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blue Ocean ATS Data on Tiingo: Real-Time Overnight Stock Prices, Now for Everyone\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/\",\"name\":\"Tiingo API Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/#organization\",\"name\":\"Tiingo.com\",\"url\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/api.tiingo.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/purple-for-light-bg.svg\",\"contentUrl\":\"https:\\\/\\\/api.tiingo.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/purple-for-light-bg.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"Tiingo.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/tiingofinance\\\/\",\"https:\\\/\\\/x.com\\\/tiingofinance\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/#\\\/schema\\\/person\\\/54fc93e1626ed221a37fcfddb597c3d6\",\"name\":\"Rishi S.\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/28ae16ae1fe9df62492ab4b742241b19a6a12395109570074a7b8194c6709ec4?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/28ae16ae1fe9df62492ab4b742241b19a6a12395109570074a7b8194c6709ec4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/28ae16ae1fe9df62492ab4b742241b19a6a12395109570074a7b8194c6709ec4?s=96&d=mm&r=g\",\"caption\":\"Rishi S.\"},\"description\":\"Rishi Singh is the CEO of Tiingo.com. A prior algorithmic and quant researcher, Rishi started Tiingo.com to modernize the financial data vertical by focusing on data acquisition, cleansing, aggregation, innovation, and distribution of data.\",\"sameAs\":[\"http:\\\/\\\/www.tiingo.com\"],\"url\":\"https:\\\/\\\/www.tiingo.com\\\/blog\\\/author\\\/rishi-s\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Blue Ocean ATS API (BOATS): Overnight Stock Prices | Tiingo","description":"Blue Ocean ATS (BOATS) powers real-time overnight U.S. stock trading, 8pm-4am ET. Tiingo opens the Blue Ocean API to all over REST and WebSocket, at cost.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/","og_locale":"en_US","og_type":"article","og_title":"Blue Ocean ATS Data on Tiingo: Real-Time Overnight Stock Prices, Now for Everyone","og_description":"Blue Ocean ATS (BOATS) powers real-time overnight U.S. stock trading, 8pm-4am ET. Tiingo opens the Blue Ocean API to all over REST and WebSocket, at cost.","og_url":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/","og_site_name":"Tiingo Blog","article_publisher":"https:\/\/www.facebook.com\/tiingofinance\/","article_published_time":"2026-07-23T03:31:19+00:00","article_modified_time":"2026-07-26T13:43:56+00:00","og_image":[{"width":1800,"height":920,"url":"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2026\/07\/cobrand.png","type":"image\/png"}],"author":"Rishi S.","twitter_card":"summary_large_image","twitter_creator":"@tiingofinance","twitter_site":"@tiingofinance","twitter_misc":{"Written by":"Rishi S.","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/#article","isPartOf":{"@id":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/"},"author":{"name":"Rishi S.","@id":"https:\/\/www.tiingo.com\/blog\/#\/schema\/person\/54fc93e1626ed221a37fcfddb597c3d6"},"headline":"Blue Ocean ATS Data on Tiingo: Real-Time Overnight Stock Prices, Now for Everyone","datePublished":"2026-07-23T03:31:19+00:00","dateModified":"2026-07-26T13:43:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/"},"wordCount":1062,"publisher":{"@id":"https:\/\/www.tiingo.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/#primaryimage"},"thumbnailUrl":"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2026\/07\/cobrand.png","articleSection":["Product Updates"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/","url":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/","name":"Blue Ocean ATS API (BOATS): Overnight Stock Prices | Tiingo","isPartOf":{"@id":"https:\/\/www.tiingo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/#primaryimage"},"image":{"@id":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/#primaryimage"},"thumbnailUrl":"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2026\/07\/cobrand.png","datePublished":"2026-07-23T03:31:19+00:00","dateModified":"2026-07-26T13:43:56+00:00","description":"Blue Ocean ATS (BOATS) powers real-time overnight U.S. stock trading, 8pm-4am ET. Tiingo opens the Blue Ocean API to all over REST and WebSocket, at cost.","breadcrumb":{"@id":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/#primaryimage","url":"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2026\/07\/cobrand.png","contentUrl":"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2026\/07\/cobrand.png","width":1800,"height":920,"caption":"Tiingo and Blue Ocean ATS"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tiingo.com\/blog\/blue-ocean-ats-overnight-stock-data\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.tiingo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Blue Ocean ATS Data on Tiingo: Real-Time Overnight Stock Prices, Now for Everyone"}]},{"@type":"WebSite","@id":"https:\/\/www.tiingo.com\/blog\/#website","url":"https:\/\/www.tiingo.com\/blog\/","name":"Tiingo API Blog","description":"","publisher":{"@id":"https:\/\/www.tiingo.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.tiingo.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.tiingo.com\/blog\/#organization","name":"Tiingo.com","url":"https:\/\/www.tiingo.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.tiingo.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/api.tiingo.com\/blog\/wp-content\/uploads\/2023\/05\/purple-for-light-bg.svg","contentUrl":"https:\/\/api.tiingo.com\/blog\/wp-content\/uploads\/2023\/05\/purple-for-light-bg.svg","width":"1024","height":"1024","caption":"Tiingo.com"},"image":{"@id":"https:\/\/www.tiingo.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/tiingofinance\/","https:\/\/x.com\/tiingofinance"]},{"@type":"Person","@id":"https:\/\/www.tiingo.com\/blog\/#\/schema\/person\/54fc93e1626ed221a37fcfddb597c3d6","name":"Rishi S.","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/28ae16ae1fe9df62492ab4b742241b19a6a12395109570074a7b8194c6709ec4?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/28ae16ae1fe9df62492ab4b742241b19a6a12395109570074a7b8194c6709ec4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/28ae16ae1fe9df62492ab4b742241b19a6a12395109570074a7b8194c6709ec4?s=96&d=mm&r=g","caption":"Rishi S."},"description":"Rishi Singh is the CEO of Tiingo.com. A prior algorithmic and quant researcher, Rishi started Tiingo.com to modernize the financial data vertical by focusing on data acquisition, cleansing, aggregation, innovation, and distribution of data.","sameAs":["http:\/\/www.tiingo.com"],"url":"https:\/\/www.tiingo.com\/blog\/author\/rishi-s\/"}]}},"featured_image_src":"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2026\/07\/cobrand-600x400.png","featured_image_src_square":"https:\/\/www.tiingo.com\/blog\/wp-content\/uploads\/2026\/07\/cobrand-600x600.png","author_info":{"display_name":"Rishi S.","author_link":"https:\/\/www.tiingo.com\/blog\/author\/rishi-s\/"},"_links":{"self":[{"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/posts\/662","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/comments?post=662"}],"version-history":[{"count":11,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/posts\/662\/revisions"}],"predecessor-version":[{"id":791,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/posts\/662\/revisions\/791"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/media\/660"}],"wp:attachment":[{"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/media?parent=662"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/categories?post=662"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tiingo.com\/blog\/wp-json\/wp\/v2\/tags?post=662"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}