Tenders in Hungary API
Overview
The Tenders in Hungary API from tenders.guru delivers publicly available government procurement data for Hungary, including contract values, buyer and supplier names, and tender dates. No registration or API key is required, so you can start making requests immediately. It is a great starting point for anyone wanting to analyze public spending or build transparency tools.
Beginner Tip
Since no authentication is needed, try the API straight from your browser by visiting https://tenders.guru/hu/api to see the interactive docs and live example responses before writing any code.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Tenders in Hungary",
"description": "Get data for procurements in Hungary in JSON format",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
id Unique identifier for the tender record title Official name or subject of the procurement tender buyer Name of the government body or organization issuing the tender value Estimated or awarded contract value in local currency date Publication or award date of the tender supplier Name of the company awarded the contract, if applicable Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://tenders.guru/hu/api";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Domainsdb.info
⭐ Beginner's PickDomainsdb.info lets you search registered domain names by keyword, TLD, or zone with no authentication needed.
markerapi
⭐ Beginner's PickMarkerapi provides free search access to the USPTO trademark database, letting you check if a brand name is already trademarked.
Tenders in Poland
⭐ Beginner's PickThe Tenders in Poland API provides structured access to Polish government procurement notices and contract awards from tenders.guru, covering public sector buyers across all regions of Poland.
Tenders in Romania
⭐ Beginner's PickThe Tenders in Romania API by tenders.guru exposes Romanian public procurement data including tender details, contract values, and awarded suppliers, all freely accessible without authentication.
Tenders in Spain
⭐ Beginner's PickThe Tenders in Spain API from tenders.guru delivers Spanish public procurement data in JSON format, covering central government, autonomous communities, and local authorities.