Aggregate statistics over a period
analyze_auction_marketAggregate auction activity over a time window to compute counts, price stats, and sold share, grouped by region, seller, or direction. Identify volume and success trends for market analysis.
Instructions
Counts, price statistics and sold-share over a window of auction activity, broken down by a dimension of your choice.
WHEN TO USE: questions about volume and trends rather than individual lots — "how much land was auctioned last week", "which regions are most active", "what share of timber lots actually sell", "who are the biggest sellers".
KEY PARAMETERS
group_by: the breakdown dimension. "direction" (asset programme, default), "sellingMethod", "status", "region" or "seller".
since / until: the period to analyse. Omit both to analyse the most recent activity.
procedure_type / status / region / keyword: narrow the population before aggregating.
scan_pages: default 15. Raise for a larger, more representative sample.
EXAMPLE — which regions had the most land activity recently: {"procedure_type":["landRental","landSell"],"group_by":"region","scan_pages":25}
EXAMPLE — how privatisation performed in July 2026: {"procedure_type":["smallPrivatization"],"since":"2026-07-01","until":"2026-07-31", "group_by":"sellingMethod","scan_pages":30}
RETURNS: totals with count/total/mean/median/min/max starting prices, a status histogram, soldSharePercentOfSettled (settled = complete, unsuccessful or cancelled only), and the same figures per group. CRITICAL: these describe only auctions CHANGED inside the scanned window, not the whole catalogue. Always report the window and coverage alongside any number.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | Start of the window to analyse, ISO date or instant. Defaults to 7 days ago. | |
| until | No | End of the window, ISO date or instant. Defaults to now. | |
| region | No | Substring of the oblast or settlement name. | |
| status | No | Restrict to these procedure statuses. | |
| keyword | No | Free-text filter applied before aggregating. | |
| group_by | No | Dimension for the breakdown table. "seller" groups by the body running the auction, "propertyOwner" by the organisation the asset belongs to (lease programmes only). Default "direction". | |
| scan_pages | No | Feed pages (100 auctions each) to aggregate over. Higher gives a more representative sample. Default 15. | |
| procedure_type | No | Restrict to an asset programme or exact selling method, e.g. ["landRental"]. |