Auction documents and download links
get_auction_documentsGet documents for any Prozorro.Sale auction, each with a direct public download URL. Filter by type or include attachments from awards, contracts, and cancellations to see the full paper trail.
Instructions
Files published for one auction, each with a direct public download URL that can be fetched without authentication.
WHEN TO USE: "show me the documents", "where is the technical specification", "get the signed contract", "is there a photo of the property".
KEY PARAMETERS
auction (required): public auction id or 24-character procedure id.
document_type: case-insensitive substring of the type. Common values: technicalSpecifications, illustration, notice, contractSigned, transferAct, act, cancellationDetails, evaluationCriteria.
include_attachments_of: which sets to return. Defaults to ["auction"]. Add "awards" and "contracts" for outcome paperwork (protocols, signed contracts, transfer acts), "cancellations" for the withdrawal justification.
include_superseded: true to also list earlier revisions of files the seller later replaced. Use when the user asks what changed. Default false — current versions only.
EXAMPLE — just the technical spec: {"auction":"SPD001-UA-20260806-70620","document_type":"technicalSpecifications"}
EXAMPLE — the complete paper trail including the signed contract: {"auction":"SPD001-UA-20260806-70620","include_attachments_of":["auction","awards","contracts"]}
RETURNS: per set, a list of documents with title, type, format, publication date and downloadUrl. Documents attached to bids are never published.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| auction | Yes | Public auction id (e.g. "LRE001-UA-20260708-03894") or 24-character procedure id. | |
| document_type | No | Keep only documents of this type, e.g. "technicalSpecifications", "illustration", "notice", "contractSigned", "cancellationDetails". Case-insensitive substring match. | |
| include_superseded | No | Include earlier revisions of documents that were later replaced. Default false — only the current version of each file is returned. | |
| include_attachments_of | No | Which attachment sets to include. Defaults to ["auction"]. Award and contract documents describe the outcome (protocols, signed contracts, transfer acts). |