Skip to content

Registered vehicles by county, category and make

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

Endpoint GET /v1/transport/vehicle_registry
Export GET /v1/transport/vehicle_registry/export?format=csv\|ndjson
Dataset id vehicle_registry
Domain transport
Rows 382,667
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
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?limit=2"
page = client.get("/v1/transport/vehicle_registry", params={"limit": 2}).json()
const page = await (await fetch(`${BASE}/v1/transport/vehicle_registry?limit=2`, { headers })).json();

Response:

{
  "data": [
    {
      "county": "ALBA",
      "national_category": "AUTOBUZ",
      "eu_category": "M2",
      "manufacturer": "IVECO",
      "commercial_description": "DAILY",
      "vehicle_count": 15,
      "manufacturer_canonical": "IVECO"
    },
    {
      "county": "ALBA",
      "national_category": "AUTOBUZ",
      "eu_category": "M2",
      "manufacturer": "IVECO",
      "commercial_description": null,
      "vehicle_count": 2,
      "manufacturer_canonical": "IVECO"
    }
  ],
  "pagination": {
    "total": 382667,
    "count": 2,
    "limit": 2,
    "offset": 0,
    "has_next": true,
    "next_offset": 2
  },
  "meta": {
    "api_version": "v1",
    "dataset": "vehicle_registry",
    "domain": "transport",
    "source_year": 2023,
    "source": "https://data.gov.ro/dataset/parc-auto-romania",
    "last_updated": "2026-07-30T18:13:54Z",
    "generated_at": "2026-07-31T08:48:47Z"
  },
  "links": {
    "self": "/v1/transport/vehicle_registry?limit=2",
    "next": "/v1/transport/vehicle_registry?limit=2&offset=2",
    "prev": null,
    "first": "/v1/transport/vehicle_registry?limit=2&offset=0",
    "last": "/v1/transport/vehicle_registry?limit=2&offset=382666",
    "documentation": "/documentation/datasets/vehicle_registry/"
  }
}

Provenance

Latest ingestion (version 3): 382,667 rows imported, 0 quarantined, from parc-auto-la-31.12.2023.csv (SHA-256 a193925c0d27…) on 2026-07-30.

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