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

Open Data RDW: Terugroep_actie_risico

URL: https://opendata.rdw.nl/Terugroepacties/Open-Data-RDW-Terugroep_actie_risico/9ihi-jgpf

API DOCS: https://dev.socrata.com/foundry/opendata.rdw.nl/9ihi-jgpf

Dataset ID: 9ihi-jgpf

Category: Terugroepacties


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

Examples

Example 1

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

type

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