Beta
Construction pricing
Average, minimum and maximum line-item prices from real construction contracts. Currently in beta — to request access please contact us.
GET
/api/v2/pricingParameters
| Parameter | Type | Description |
|---|---|---|
| q | string | Full-text search in description and code |
| kod | string | Item code prefix (e.g. 713) |
| rok | string | Data year (e.g. 2024) |
| limit | number | Number of results, max 100 (default: 20) |
Example
curl -H "X-Api-Key: mrw_pricing_…" \ "https://veritra.io/api/v2/pricing?q=concrete&rok=2024&limit=5"
Response
Description values come back in the source catalog's language — Czech for the Czech construction database.
{
"items": [
{
"ursKod": "592212400",
"popis": "Concrete C 25/30 XC1",
"mj": "m3",
"cenaPrumer": 2850,
"cenaMin": 2400,
"cenaMax": 3200,
"rok": "2024"
}
]
}Response fields
| Parameter | Type | Description |
|---|---|---|
| ursKod | string | Item code in the price catalog |
| popis | string | Item description |
| mj | string | Unit of measure (m3, m2, pc…) |
| cenaPrumer | number | Average price across contracts |
| cenaMin | number | Minimum price |
| cenaMax | number | Maximum price |
| rok | string | Year of the price data |