Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
variable RDWQuery
import { RDWQuery } from "https://deno.land/x/rdw_data@0.7.0/src/providers/KentekenVoertuigenCarrosserieSpecificatie.ts";

Open Data RDW: Gekentekende_voertuigen_carrosserie_specificatie

URL: https://opendata.rdw.nl/Voertuigen/Open-Data-RDW-Gekentekende_voertuigen_carrosserie_/jhie-znh9

API DOCS: https://dev.socrata.com/foundry/opendata.rdw.nl/jhie-znh9

Dataset ID: jhie-znh9

Category: Voertuigen


This generates a SodaQuery for the Open Data RDW: Gekentekende_voertuigen_carrosserie_specificatie dataset.

Examples

Example 1

const data = await RDWQuery()
  .where(Where.like(Fields.CarrosserieVoertuigNummerCodeVolgnummer, "some_value")
  .limit(10)
  .offset(0);
  .execute();

type

(auth?: AuthOpts, opts?: Options) => unknown