Skip to content

Registered vehicles by county, category, make and fuel type

Number of road vehicles registered in Romania as of 31 December, by county, national and EU category, make, commercial description and fuel type. Source: DRPCIV via data.gov.ro.

Endpoint GET /v1/transport/vehicle_registry_fuel
Export GET /v1/transport/vehicle_registry_fuel/export?format=csv\|ndjson
Dataset id vehicle_registry_fuel
Domain transport
Rows 378,191
Source data.gov.ro CKAN package parc-auto-romania

Columns

All columns are filterable, sortable, and selectable — see Querying & filtering.

Column Type Notes
county string required
national_category string
eu_category string
manufacturer string raw value; standardized in manufacturer_canonical
commercial_description string
fuel_type string required
vehicle_count integer
manufacturer_canonical string canonical form of manufacturer (reference manufacturers)
source_year bigint constant for this source file

Example request

curl -H "Authorization: Bearer $API_KEY" "https://api.canovix.ro/v1/transport/vehicle_registry_fuel?limit=2"
page = client.get("/v1/transport/vehicle_registry_fuel", params={"limit": 2}).json()
const page = await (await fetch(`${BASE}/v1/transport/vehicle_registry_fuel?limit=2`, { headers })).json();

Response:

{
  "data": [
    {
      "county": "ALBA",
      "national_category": "AUTOBUZ",
      "eu_category": "M2",
      "manufacturer": "IVECO",
      "commercial_description": "DAILY",
      "fuel_type": "MOTORINA",
      "vehicle_count": 15,
      "manufacturer_canonical": "IVECO"
    },
    {
      "county": "ALBA",
      "national_category": "AUTOBUZ",
      "eu_category": "M2",
      "manufacturer": "IVECO",
      "commercial_description": null,
      "fuel_type": "MOTORINA",
      "vehicle_count": 2,
      "manufacturer_canonical": "IVECO"
    }
  ],
  "pagination": {
    "total": 378191,
    "count": 2,
    "limit": 2,
    "offset": 0,
    "has_next": true,
    "next_offset": 2
  },
  "meta": {
    "api_version": "v1",
    "dataset": "vehicle_registry_fuel",
    "domain": "transport",
    "source_year": 2025,
    "source": "https://data.gov.ro/dataset/parc-auto-romania",
    "last_updated": "2026-07-21T15:58:59Z",
    "generated_at": "2026-07-31T08:48:47Z"
  },
  "links": {
    "self": "/v1/transport/vehicle_registry_fuel?limit=2",
    "next": "/v1/transport/vehicle_registry_fuel?limit=2&offset=2",
    "prev": null,
    "first": "/v1/transport/vehicle_registry_fuel?limit=2&offset=0",
    "last": "/v1/transport/vehicle_registry_fuel?limit=2&offset=378190",
    "documentation": "/documentation/datasets/vehicle_registry_fuel/"
  }
}

Provenance

Latest ingestion (version 1): 378,191 rows imported, 0 quarantined, from parc-auto-combistibil.csv (SHA-256 84446a29485a…) on 2026-07-21.

Full provenance — checksums, pipeline version, timings — is live at /v1/datasets/{id}.