Greenland deal text released by...?Polymarket historical data and price history

Greenland deal text released by: a standalone Polymarket politics event with 2 markets and $17.5K in lifetime traded volume. 2 markets are trading. Marketlens records every market's order book at full depth, coverage running since September 20, 2026.

Data as of 2026-09-21

Markets
2
Resolved
0
Traded volume
$17.5K
Collected since
2026-09-20

Markets in this event

Will the Greenland agreement text be released by September 23, 2026? (copy) (copy)

closes 2026-10-01 · volume $8.6K · last price 51.0%

Will the Greenland agreement text be released by September 30, 2026?

closes 2026-10-01 · volume $8.9K · last price 77.0%

Query this event

python
from marketlens import MarketLens client = MarketLens() [event] = client.events.list(q="Greenland deal text released 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 "Greenland deal text released by"?

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

How much has "Greenland deal text released by" traded on Polymarket?

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

How do I download "Greenland deal text released by" data?

Query it through the REST API or the Python SDK (pip install marketlens): search events for "Greenland deal text released 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: Democratic Presidential Nominee 2028, Presidential Election Winner 2028, Republican Presidential Nominee 2028, 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