Download properties from the AGB Register.
agb_property(agb_code, property = NULL)
AGB codes
property of the AGB code. Will return a data.frame if left blank.
The AGB (Algemeen GegevensBeheer) register is a national database in the Netherlands that assigns a unique AGB code to healthcare providers and institutions. This code is used for identification and administration within the healthcare sector, such as for billing insurance companies, contracting, and data exchange between healthcare providers.
The AGB code is managed by VECOZO and plays a crucial role in ensuring transparency and efficiency in Dutch healthcare administration.
agb_property(03033048)
#> # A tibble: 1 × 13
#> agb title initials last_name full_name sex specialty specialty_since
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <date>
#> 1 03033048 "" A. Jansen A. Jansen M Chirurgie (… 1994-10-01
#> # ℹ 5 more variables: specialty_until <date>, employed_by <chr>,
#> # employer_agb <int>, employee_since <date>, employee_until <date>
agb_property(c(03033048, 01102504))
#> # A tibble: 2 × 13
#> agb title initials last_name full_name sex specialty specialty_since
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <date>
#> 1 03033048 "" A. Jansen A. Jansen M Chirurgi… 1994-10-01
#> 2 01102504 "drs." A.A. Jansen Drs. A.A. … M Huisarts 2018-01-01
#> # ℹ 5 more variables: specialty_until <date>, employed_by <chr>,
#> # employer_agb <chr>, employee_since <chr>, employee_until <chr>
agb_property(03033048, property = "last_name")
#> [1] "Jansen"
agb_property(c(03033048, 01102504), "specialty")
#> [1] "Chirurgie (Heelkunde)" "Huisarts"