DataCite REST API: providers
dc_providers( ids = NULL, query = NULL, year = NULL, region = NULL, organization_type = NULL, focus_area = NULL, include = NULL, limit = 25, page = 1, cursor = NULL, ... )
ids
: (character) one or more provider IDsquery
: (character) query stringyear
: (character) yearregion
: (character) region nameorganization_type
: (character) organization typefocus_area
: (character) focus areainclude
: (character) vector of fields to returnlimit
: (numeric/integer) results per pagepage
: (numeric/integer) result page, the record to start atcursor
: (character) page cursor (used instead of limit
param)...
: curl options passed on to crul::HttpClient## Not run: if (dc_check()) { x <- dc_providers() x dc_providers(limit = 3) dc_providers(ids = x$data$id[1:5]) } ## End(Not run)
Useful links