- catalog
A required character string specifying the name of the data
catalog (e.g., "fao", "wb"). Valid codes can be found in the
documentation for access_codes().
- keyword
A character string used to search data titles, descriptions,
and keywords (e.g., "lsms").
- from
An integer indicating the start year for the data collection's
coverage period (e.g., 2000).
- to
An integer indicating the end year for the data collection's
coverage period (e.g., 2010).
- country
A character vector. Provide one or more country names or
ISO 3 codes (case-insensitive). For valid codes, see country_codes().
Multiple values should be passed as a vector, e.g., c("afg", "Indonesia", "bra").
- inc_iso
A logical value. If TRUE, the results data frame will
include the ISO3 country codes; otherwise, it will contain only country names.
Default: NULL.
- collection
A character vector. Filters results by the data collection
repository ID, which is returned in the repo_id column by collections().
Multiple IDs can be searched by passing a vector.
- created
A character string used to filter results by the date of creation
or update within the catalog. Use the date format YYYY-MM-DD.
- dtype
A character vector. Filters results by one or more data access types.
Valid values include: "open", "direct", "public",
"licensed", "enclave", "remote", and "other".
See access_codes() for a list of available types by catalog.
Example: c("open", "licensed").
- sort_by
A character string used to specify the column by which to sort the
results. Valid values are: "rank", "title", "nation" (for country),
or "year". Note that "country" is automatically mapped to the API field "nation".
- sort_order
A character string indicating the sort direction.
Must be either "asc" (ascending) or "desc" (descending).
- ps
An integer indicating the number of records to display per page
of results. Default: 15 records.
- page
An integer specifying the page number of the search results to return.
- rows
A logical value. If TRUE, the function returns only a data frame containing
the list of returned studies; otherwise, a list containing
detailed search metadata (e.g., total records found, total pages) instead of the
data records themselves. Default: TRUE.