Watch for new and updated auctions
track_auction_changesMonitor Prozorro.Sale auctions for new or updated listings since a specified time, with cursor-based pagination for ongoing polling.
Instructions
What appeared or changed in a niche since a given moment. Cursor-based, so repeated calls make forward progress without re-reading the same activity.
WHEN TO USE: monitoring rather than searching — "anything new since yesterday", "did anything change on the lots I am watching", "keep me posted on timber auctions". For a one-off "what exists" question use search_auctions instead.
KEY PARAMETERS
since: ISO instant to watch from. Defaults to 24 hours ago. On follow-up polls pass back the nextCursor from the previous response — that is the whole point of this tool.
procedure_type / status / keyword / region: narrow the watch to one niche.
limit / scan_pages: raise when a busy window truncates.
EXAMPLE — first poll of a niche: {"procedure_type":["landRental"],"region":"Полтав","limit":20}
EXAMPLE — follow-up poll using the cursor from the previous response: {"procedure_type":["landRental"],"region":"Полтав","since":"2026-08-06T06:27:21.880000Z"}
RETURNS: changed auctions with changedAt and an isNew flag distinguishing brand-new listings from updates to existing ones, a newlyPublished count, and nextCursor for the following poll. The cursor is inclusive, so the last auction may repeat once.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum changed auctions to list. Default 30. | |
| since | No | ISO instant to watch from — pass the "nextCursor" returned by the previous call to poll for new activity. Defaults to 24 hours ago. | |
| until | No | Optional upper bound, ISO instant. Defaults to now. | |
| region | No | Substring of the oblast or settlement name. | |
| status | No | Restrict to procedures currently in these statuses, e.g. ["active_tendering"]. | |
| keyword | No | Free-text filter applied to title, description and items. | |
| scan_pages | No | Feed pages (100 auctions each) this call may read. Default 8. | |
| procedure_type | No | Restrict to an asset programme or exact selling method, e.g. ["smallPrivatization"]. |