Cross-country benchmarkPublished 2026-05-245 min read

Why Azerbaijan pays 5× more than Ukraine for office equipment

For CPV category 3019 (office equipment — computers, peripherals), the median Azerbaijani government tender is 4.92× higher than the Ukrainian equivalent: €110,510 vs €22,445 in EUR. Sample: 101 AZ tenders and 92 UA tenders of comparable size. This is not proof of overpayment — it is an audit signal worth investigating.

What the 4.92× figure shows

A median is the middle value of a sorted list. When 50% of AZ tenders for office equipment cost under €110,510 and 50% of UA tenders cost under €22,445, the gap is not random. With n=101 AZ and n=92 UA in the €10K–€5M per-tender range (which filters out individual purchases and mega-contracts), the gap is statistically meaningful.

The median measures. It does not explain.

Four plausible explanations

  1. Different product mix. AZ may procure premium-tier (Apple/Dell business) where UA procures no-name Chinese imports. Specification drives price.
  1. Service bundling. «Delivery + installation + 5-year warranty + on-site support» combined into one tender produces a high per-contract price, not a high per-item price. UA tenders may split delivery and service into separate procurements.
  1. Brand specification in the TT limits suppliers. When the technical statement requires a specific brand (Lenovo ThinkCentre M-series), the tender effectively competes only among that brand's resellers — no downward price pressure.
  1. Inflated estimated_value without discounts at bid stage. The procurer publishes a high estimate but receives bids 30-50% lower — final contract price ends up far below the published-estimate median. This can only be verified by reading signed contracts, which are not yet in our slice.

What an auditor should do

This statistic is a starting point, not a verdict. Recommended next steps:

  1. Request details on the top 10 largest CPV 3019 tenders in AR — exact specifications, brand requirements, number of bids received.
  1. Compare estimated_value vs final contract price in that subset. If the gap is >40%, this is normal competition; if <10%, dig deeper.
  1. Check supplier concentration — how many unique VÖEN have won these tenders over the last 24 months. If 3-5 suppliers hold 80% of contracts, that is a signal for more detailed antitrust analysis.

The AZTender Audit platform exposes each of these modules ready for use.

What you CANNOT say from this data

  • ❌ «Azerbaijan overpays by 5×» — no; we don't have final contract prices.
  • ❌ «This is corruption» — no; correlation is not causation.
  • ❌ «This is a nationwide pattern» — no; this is a per-CPV median; different ministries show different profiles.
  • ✅ «This CPV category deserves priority attention in audit.» That is all.

Methodology

AZ source: etender.gov.az (105,422 tenders, 2018-2026). UA source: ProZorro (100,000+ tenders, 2023-2026, still growing). EUR conversion: official ECB / CBAR / NBU rates as of tender publication date. Filter: €10,000 ≤ value ≤ €5,000,000. CPV grouping: 4-digit division. Minimum sample n=30 per country. The query is fully reproducible via the aztender.ai/data API.

SQL for reproducibility

WITH az AS (
  SELECT substring(c,1,4) AS cpv, COUNT(*) n_az,
         percentile_cont(0.5) WITHIN GROUP (ORDER BY value_eur) AS med_az
  FROM tenders, unnest(cpv_codes) c
  WHERE source = 'ETENDER_AZ'
    AND value_eur >= 10000 AND value_eur <= 5000000
  GROUP BY 1
),
ua AS (
  SELECT substring(c,1,4) AS cpv, COUNT(*) n_ua,
         percentile_cont(0.5) WITHIN GROUP (ORDER BY value_eur) AS med_ua
  FROM tenders, unnest(cpv_codes) c
  WHERE source = 'PROZORRO'
    AND value_eur >= 10000 AND value_eur <= 5000000
  GROUP BY 1
)
SELECT az.cpv, az.n_az, ua.n_ua,
       round(az.med_az)::int AS az_med_eur,
       round(ua.med_ua)::int AS ua_med_eur,
       round((az.med_az / NULLIF(ua.med_ua,0))::numeric, 2) AS ratio
FROM az JOIN ua ON az.cpv = ua.cpv
WHERE az.cpv = '3019' AND az.n_az >= 30 AND ua.n_ua >= 30;

Citation

AZTender Open Data, Cross-country price benchmark, CPV 3019, accessed 2026-05-24. https://aztender.ai/data-storytelling/az-vs-ua-office-equipment-price-gap

Author

AZTender team
EM Consulting · Baden-Baden

Questions about this article?

Write to the authors — we reply within 1 business day. Request for deep-dive audit of a specific CPV category or organization — same channel.

consulting@elshanmusayev.com