Search resources on the list endpoint, such as press releases, news and publications.
Usage
bps_search(
model,
...,
keyword = NULL,
domain_id = "0000",
page = NULL,
lang = c("ind", "eng")
)
Arguments
- model
The result model, e.g. "publication" to request a list of publications. See the Model section below for more details.
- ...
Name-value pairs that provide query parameters. See
httr2::req_url_query()
for more details.- keyword
The keyword to filter the search result.
- domain_id
The domain ID of a BPS bureau. Defaults to "0000", which is the domain ID of the central bureau. Use
bps_domain()
to see the list of domain IDs.- page
The page number of the result. Defaults to page one. Set to
Inf
to request all pages.- lang
The result's language. Must be either "ind" for Indonesian or "eng" for English. Defaults to Indonesian.
Model
model
must be one of the following:
"statictable";
"pressrelease";
"publication";
"infographic"; or
"news".
Examples
bps_search("news", keyword = "inflation", lang = "eng")
#> # A tibble: 8 × 7
#> news_id newscat_id newscat_name title news released picture
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 508 Statistik Lain Other Activities March 2022 … "<p>… 2022-04… https:…
#> 2 356 Sensus dan Survey BPS Activities Changes in … "\"E… 2020-01… https:…
#> 3 349 Statistik Lain Other Activities DPR RDP: BP… "Jak… 2019-12… https:…
#> 4 282 Statistik Lain Other Activities Education o… "Jak… 2019-04… https:…
#> 5 250 Statistik Lain Other Activities The FMS Nat… "Jak… 2018-11… https:…
#> 6 237 Sensus dan Survey BPS Activities NTP, Measur… "Bal… 2018-10… https:…
#> 7 204 Sensus dan Survey BPS Activities Role Playin… "\"F… 2018-07… https:…
#> 8 94 Statistik Lain Other Activities Chairul Tan… "The… 2014-06… https:…