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

Open Data RDW: Carrosserie Uitvoering

URL: https://opendata.rdw.nl/Typegoedkeuring/Open-Data-RDW-Carrosserie-Uitvoering/w2qp-idms

API DOCS: https://dev.socrata.com/foundry/opendata.rdw.nl/w2qp-idms

Dataset ID: w2qp-idms

Category: Typegoedkeuring


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

Examples

Example 1

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

type

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