Tenders in Hungary API

Beginner's Pick Business / No Auth Required Beginner HTTPS
Free to Use Varies (check documentation)

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

Tenders in Hungary data via REST API

Example Response

JSON 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

Request
// ⚠️ 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

429 Too Many Requests Sending requests too rapidly without any rate-limit handling
Add a 1-second pause between requests and cache results locally to reduce repeated calls
Empty results array Using date filters or query parameters that do not match any tenders in the dataset
Start without filters to confirm the endpoint works, then narrow down with valid date ranges
CORS error in browser The API CORS policy may not allow all origins when called from browser-side JavaScript
Make requests from your backend or server instead of directly from browser JavaScript

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Business
Difficulty Beginner
Verified: 2026-04-04

Related Tags

Similar APIs

View All →