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/CarrosserieUitvoeringNummeriekeCode.ts";

Open Data RDW: Carrosserie Uitvoering Nummerieke Code

URL: https://opendata.rdw.nl/Typegoedkeuring/Open-Data-RDW-Carrosserie-Uitvoering-Nummerieke-Co/nypm-t8hx

API DOCS: https://dev.socrata.com/foundry/opendata.rdw.nl/nypm-t8hx

Dataset ID: nypm-t8hx

Category: Typegoedkeuring


This generates a SodaQuery for the Open Data RDW: Carrosserie Uitvoering Nummerieke Code dataset.

Examples

Example 1

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

type

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