Skip to main content
Latest
variable RDWQuery
import { RDWQuery } from "https://deno.land/x/rdw_data@0.7.0/src/providers/KentekenVoertuigenSubcategorieVoertuig.ts";

Open Data RDW: Gekentekende_voertuigen_subcategorie_voertuig

URL: https://opendata.rdw.nl/Voertuigen/Open-Data-RDW-Gekentekende_voertuigen_subcategorie/2ba7-embk

API DOCS: https://dev.socrata.com/foundry/opendata.rdw.nl/2ba7-embk

Dataset ID: 2ba7-embk

Category: Voertuigen


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

Examples

Example 1

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

type

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