Skip to contents

List approved plant protection products

Usage

psm_mittel(kennr = NULL, params = list(), safe = TRUE, refresh = FALSE)

Arguments

kennr

Optional product identification number (9 characters).

params

Named list of query parameters. Frequently used keys:

kennr

Product id (e.g. "024780-00").

wirkstoffId

Active ingredient id.

awg_id

Application id.

kultur

Crop filter code.

kultur_gruppe

Crop group filter code.

kode

Code filter for catalog lookups.

kodeliste

Code list name.

sprache

Language code.

safe

Logical; if TRUE (default), apply rate-limiting and cache GET responses to tools::R_user_dir("bunddev", "cache").

refresh

Logical; if TRUE, ignore cached responses and re-fetch from the API (default FALSE).

Value

A tibble with one row per plant protection product and columns:

FORMULIERUNG_ART

Character. Formulation type code.

KENNR

Character. Product identification number.

MITTELNAME

Character. Product trade name.

ZUL_ENDE

Character. Approval end date.

ZUL_ERSTMALIG_AM

Character. Initial approval date.

Details

The Pflanzenschutzmittelzulassung API provides access to Germany's plant protection product database from the Bundesamt fuer Verbraucherschutz und Lebensmittelsicherheit (BVL). This function returns approved pesticides. API documentation: https://github.com/bundesAPI/pflanzenschutzmittelzulassung-api.

See also

bunddev_parameters() to inspect available query parameters. psm_wirkstoffe() to list active ingredients, psm_stand() for data version.

Other Pflanzenschutzmittelzulassung: psm_anwendungen(), psm_kultur_gruppen(), psm_schadorg_gruppen(), psm_stand(), psm_wirkstoffe()

Examples

if (FALSE) { # \dontrun{
psm_mittel()
psm_mittel(kennr = "024780-00")
} # }