Ana Sayfa›Dünya›OpenAI files confidential SEC paperwork …
🌍 Dünya
OpenAI files confidential SEC paperwork for IPO, opening the door to a Wall Street debut
AP News World·🕐 1 sa önce·👁 0 görüntülenme
Sam Altman arrives at the U.S. District Court in Oakland, Calif., April 30, 2026. (AP Photo/Godofredo A. Vásquez, file) 2026-06-08T21:52:25Z ChatGPT maker OpenAI filed preliminary paperwork that would open the door to it becoming a publicly traded company, making itself the third in a powerhouse trio of artificial intelligence companies racing to Wall Street debuts. The San Francisco-based company said Monday it has filed confidential paperwork with the U.S. Securities and Exchange Commission. “We expect it to leak so we’re just announcing it,” the company said in a written statement. “We have not decided on timing yet; it may be a while because there are things we want to do that are likely easier as a private company. But it’s a complicated set of tradeoffs and this gives us the option to go public sooner if that ends up being best.” OpenAI’s move follows its rival Anthropic’s June 1 disclosure that it is also moving toward an initial public offering of shares. Both are now following Elon Musk’s space company SpaceX, which has started an IPO roadshow pitching itself as an AI-focused space company. OpenAI CEO Sam Altman first publicly floated the possibility of an IPO last fall, describing it as the “most likely path” for the company given its size and the need for vast amounts of capital to advance its technology. OpenAI began in 2015 as a nonprofit dedicated to developing AI for the common good and is now a company valued at $852 billion. Paving the way for going public was OpenAI’s decision last year to reorganize its business structure and convert itself into a public benefit corporation even as it remains technically under the control of a nonprofit. /* Desktop-first: fully collapse by default */ #ap-readmore-embed { display: none; margin: 0; padding: 0; height: 0; min-height: 0; overflow: hidden; text-align: center; position: relative; z-index: 2; } /* Only show on mobile */ @media (max-width: 767px) { #ap-readmore-embed { display: block; margin: 28px 0; height: auto; overflow: visible; } } #ap-readmore-embed .ap-readmore-btn { appearance: none; -webkit-appearance: none; border: 0; background: #000; color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-family: inherit, "AP Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; font-weight: 700; font-size: 16px; letter-spacing: 0.2px; line-height: 1; box-shadow: 0 10px 18px rgba(0,0,0,0.12); transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease; touch-action: manipulation; -webkit-tap-highlight-color: transparent; position: relative; z-index: 3; } #ap-readmore-embed .ap-readmore-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 22px rgba(0,0,0,0.16); } #ap-readmore-embed .ap-readmore-btn:active { transform: translateY(0); box-shadow: 0 10px 18px rgba(0,0,0,0.12); opacity: 0.95; } #ap-readmore-embed .ap-readmore-btn:focus-visible { outline: 3px solid rgba(228, 0, 43, 0.35); outline-offset: 3px; } #ap-readmore-embed .ap-readmore-icon { width: 10px; height: 10px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -2px; } #ap-readmore-embed .ap-readmore-fade { display: none; height: 48px; margin-top: -48px; pointer-events: none; background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1)); } Read More (function () { var APRM_EMBED_ID = "ap-readmore-embed"; var APRM_MOBILE_MQ = "(max-width: 767px)"; function APRM_onReady(fn) { if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", fn); } else { fn(); } } APRM_onReady(function () { var APRM_embedEl = document.getElementById(APRM_EMBED_ID); if (!APRM_embedEl) return; // 🚨 DESKTOP: remove entire module wrapper and bail early if (!window.matchMedia(APRM_MOBILE_MQ).matches) { var APRM_rootModule = APRM_embedEl.closest(".HTMLModuleEnhancement") || APRM_embedEl.closest(".HtmlModule"); if (APRM_rootModule && APRM_rootModule.parentNode) { APRM_rootModule.parentNode.removeChild(APRM_rootModule); } else if (APRM_embedEl.parentNode) { APRM_embedEl.parentNode.removeChild(APRM_embedEl); } return; // stop the rest of the script from running } }); })(); (function () { var EMBED_ID = "ap-readmore-embed"; var BTN_ID = "apReadMoreBtn"; var FADE_ID = "apReadMoreFade"; var STOP_SELECTOR = ".Page-below"; var SIGN_IN_GATE_SELECTOR = ".sign-in-gate-content"; var HIDDEN_ATTR = "data-ap-readmore-hidden"; var MOBILE_MQ = "(max-width: 767px)"; function ready(fn) { if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", fn); } else { fn(); } } function isElementNode(n) { return n && n.nodeType === 1; } function cancelEvent(e) { if (!e) return; if (typeof e.preventDefault === "function") e.preventDefault(); if (typeof e.stopPropagation === "function") e.stopPropagation(); if (typeof e.stopImmediatePropagation === "function") e.stopImmediatePropagation(); e.cancelBubble = true; e.returnValue = false; } function collapseDesktopEmbed(embed) { if (!embed) return true; if (!window.matchMedia(MOBILE_MQ).matches) { var maybeWrappers = [ embed.parentElement, embed.closest(".html-embed"), embed.closest("[data-type='htmlembed']"), embed.closest("[class*='embed']"), embed.closest("[class*='Embed']") ].filter(Boolean); embed.style.display = "none"; embed.style.margin = "0"; embed.style.padding = "0"; embed.style.height = "0"; embed.style.minHeight = "0"; embed.style.overflow = "hidden"; maybeWrappers.forEach(function (el) { el.style.margin = "0"; el.style.padding = "0"; el.style.height = "0"; el.style.minHeight = "0"; el.style.overflow = "hidden"; }); if (embed.parentNode) { embed.parentNode.removeChild(embed); } return true; } return false; } ready(function () { var embed = document.getElementById(EMBED_ID); var btn = document.getElementById(BTN_ID); var fade = document.getElementById(FADE_ID); if (!embed || !btn) return; if (collapseDesktopEmbed(embed)) return; var signInGate = document.querySelector(SIGN_IN_GATE_SELECTOR); if (signInGate) { embed.innerHTML = ""; return; } // — Analytics: impression when embed enters viewport — if ("IntersectionObserver" in window) { var io = new IntersectionObserver(function (entries, observer) { if (entries[0].isIntersecting) { window.dataLayer = window.dataLayer || []; window.dataLayer.push({ event: "ap_readmore_impression" }); observer.disconnect(); } }, { threshold: 0 }); io.observe(btn); } var stopEl = document.querySelector(STOP_SELECTOR); if (!stopEl) return; var rootCandidates = [ embed.closest(".Page"), embed.closest("article"), embed.closest("main"), document.body ].filter(Boolean); var root = rootCandidates.find(function (c) { return c.contains(stopEl); }) || document.body; var all = root.getElementsByTagName("*"); var hidden = []; for (var i = 0; i In an April interview, OpenAI’s chief financial officer Sarah Friar declined to give a timeline for a potential IPO but said the company was already “acting with the good hygiene of a public company,” such as by measuring its revenue in the way a publicly traded firm would have to report earnings to the SEC. “I want us to be ready,” she told The Associated Press. “I think it’s good to be able to tap the public markets. They’re much bigger than the private markets if you believe compute is a competitive advantage.” She said OpenAI’s current valuation would make it one of the 15 biggest companies in the S&P 500. She also said there is a “credentializing moment of being a public company.” “At that point, people are checking your balance sheet, the SEC is governing you and so on,” she said. MATT O’BRIEN O’Brien covers the business of technology and artificial intelligence for The Associated Press. mailto
Sam Altman arrives at the U.S. District Court in Oakland, Calif., April 30, 2026. (AP Photo/Godofredo A. Vásquez, file)
ChatGPT maker OpenAI filed preliminary paperwork that would open the door to it becoming a publicly traded company, making itself the third in a powerhouse trio of artificial intelligence companies racing to Wall Street debuts.The San Francisco-based company said Monday it has filed confidential paperwork with the U.S. Securities and Exchange Commission. “We expect it to leak so we’re just announcing it,” the company said in a written statement. “We have not decided on timing yet; it may be a while because there are things we want to do that are likely easier as a private company. But it’s a complicated set of tradeoffs and this gives us the option to go public sooner if that ends up being best.”OpenAI’s move follows its rival Anthropic’s June 1 disclosure that it is also moving toward an initial public offering of shares. Both are now following Elon Musk’s space company SpaceX, which has started an IPO roadshow pitching itself as an AI-focused space company.OpenAI CEO Sam Altman first publicly floated the possibility of an IPO last fall, describing it as the “most likely path” for the company given its size and the need for vast amounts of capital to advance its technology. OpenAI began in 2015 as a nonprofit dedicated to developing AI for the common good and is now a company valued at $852 billion.Paving the way for going public was OpenAI’s decision last year to reorganize its business structure and convert itself into a public benefit corporation even as it remains technically under the control of a nonprofit.
In an April interview, OpenAI’s chief financial officer Sarah Friar declined to give a timeline for a potential IPO but said the company was already “acting with the good hygiene of a public company,” such as by measuring its revenue in the way a publicly traded firm would have to report earnings to the SEC.“I want us to be ready,” she told The Associated Press. “I think it’s good to be able to tap the public markets. They’re much bigger than the private markets if you believe compute is a competitive advantage.”She said OpenAI’s current valuation would make it one of the 15 biggest companies in the S&P 500. She also said there is a “credentializing moment of being a public company.”“At that point, people are checking your balance sheet, the SEC is governing you and so on,” she said.