OpenAI announces bankruptcy by...?Polymarket historical data and price history

OpenAI announces bankruptcy by: a standalone Polymarket other event with 3 markets and $41.4K in lifetime traded volume. 3 markets are trading. Marketlens records every market's order book at full depth, coverage running since September 18, 2026.

Data as of 2026-09-21

Markets
3
Resolved
0
Traded volume
$41.4K
Collected since
2026-09-18

Markets in this event

Will OpenAI announce bankruptcy by December 31, 2029?

closes 2030-01-01 · volume $11.7K · last price 19.5%

Will OpenAI announce bankruptcy by December 31, 2028?

closes 2029-01-01 · volume $9.4K · last price 15.5%

Will OpenAI announce bankruptcy by December 31, 2027?

closes 2028-01-01 · volume $20.3K · last price 7.5%

Query this event

python
from marketlens import MarketLens client = MarketLens() [event] = client.events.list(q="OpenAI announces bankruptcy by", take=1) for market in client.events.markets(event.id, take=5): print(market.question, market.outcomes[0].last_price) # the order book behind any market, at any past moment book = client.orderbook.get(market.id, at="2026-08-16T12:00:00Z") print(book.midpoint, book.bid_depth, book.ask_depth)

Common questions

What data does Marketlens have for "OpenAI announces bankruptcy by"?

3 markets with full depth L2 order book history recorded since September 18, 2026, market metadata with lifetime traded volume, and the winning outcome for each market once it resolves.

How much has "OpenAI announces bankruptcy by" traded on Polymarket?

$41.4K in cumulative traded volume across the event's markets. Per market volumes are listed in the table on this page.

How do I download "OpenAI announces bankruptcy by" data?

Query it through the REST API or the Python SDK (pip install marketlens): search events for "OpenAI announces bankruptcy by", list the event's markets, then pull each market's order book history. Bulk Parquet exports cover full markets for offline work, and the free tier includes 1M rows per day.

Related events: Which companies will be acquired before 2027?, Anthropic IPO by __?, Iran full airspace closure by...?, or the full event list.

Try it

Pull this event's books in one call

The free tier includes 1M rows per day with full API and full archive access, no card required.

bash
$ pip install marketlens