Overview

The 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. It covers a wide range of sectors such as infrastructure, healthcare, and IT. Beginners can use it to explore public spending patterns or build open-data applications for Romanian procurement transparency.

Beginner Tip

No API key is needed — just send a GET request to https://tenders.guru/ro/api/tenders?page=1 to start exploring live procurement data from Romania's public sector.

Available Data

The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.

Tenders in Romania data via REST API

Example Response

Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.

JSON Response · Illustrative
{
  "status": "success",
  "data": {
    "result": "Data from Tenders in Romania",
    "description": "Get data for procurements in Romania in JSON format",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

id Unique identifier for the tender
title Name or subject line of the procurement notice
buyer Romanian public institution issuing the tender
value Contract value in Romanian Leu (RON)
date Date the tender was published or awarded
supplier Company that won the contract, if awarded

Implementation Example

Calls a real endpoint of this API. Replace any placeholder credentials with your own key.

Request
const url = "https://tenders.guru/ro/api/tenders?page=1&per_page=10";
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

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

404 Not Found Using an incorrect path segment such as /api/ro/ instead of /ro/api/
Ensure the country code precedes /api/ in the URL: tenders.guru/ro/api/tenders
Empty data array Filtering by a date range with no tenders in the dataset
Remove date filters first to confirm the endpoint returns data, then narrow the range
SSL/TLS error Using http:// instead of https:// in older HTTP clients
Always use https:// — the API does not serve unencrypted traffic

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
Listing details not endpoint-verified

Related Tags

Similar APIs

View All →