Movatterモバイル変換


[0]ホーム

URL:


5 Programmatic access (APIs)

R-universe provides several APIs for programmatic access, requiring no authentication. Thanks to the APIs you can list universes, packages in an universe, get information on packages, perform searches.

You can interact with the API in two ways:
- Create API calls “manually” in the command-line or R.
- Use theuniverse R package available from rOpenSci’s R-universe.

This page demonstrates usage with{httr2} or{universe} directly.

5.1 Universe-specific APIs

API endpoints start with the universe URL.
This documentation useshttps://jeroen.r-universe.dev as an example, but you can replace it with any universe URL.

5.1.1 List of all universes

URL:https://r-universe.dev/stats/everyone

Example using{httr2}:

universes<- httr2::request("https://r-universe.dev/stats/everyone")|>  httr2::req_user_agent("R-universe docs")|>  httr2::req_perform()|>  httr2::resp_body_json()str(universes,max.level =1)
List of 2 $ universes  :List of 10490 $ maintainers:List of 10236
head(universes[["universes"]])
[[1]][1] "09dohkim"[[2]][1] "1001oreos"[[3]][1] "16eagle"[[4]][1] "1802515849"[[5]][1] "1vbutkus"[[6]][1] "2005m"
head(universes[["maintainers"]])
[[1]][1] "000100100110001"[[2]][1] "09dohkim"[[3]][1] "1001oreos"[[4]][1] "123caj"[[5]][1] "13479776"[[6]][1] "1802515849"

Example using{universe}:

universe::everyone()|>head()
[1] "000100100110001" "09dohkim"        "1001oreos"       "123caj"         [5] "13479776"        "1802515849"
universe::everyone(type ="universes")|>head()
[1] "09dohkim"   "1001oreos"  "16eagle"    "1802515849" "1vbutkus"  [6] "2005m"
universe::everyone(type ="maintainers")|>head()
[1] "000100100110001" "09dohkim"        "1001oreos"       "123caj"         [5] "13479776"        "1802515849"

5.1.2 List of packages in an universe

URL:https://<username>.r-universe.dev/api/ls

Example using{httr2}:

packages<- httr2::request("https://jeroen.r-universe.dev/api/ls")|>  httr2::req_user_agent("R-universe docs")|>  httr2::req_perform()|>  httr2::resp_body_json()str(packages)
List of 18 $ : chr "RAppArmor" $ : chr "V8" $ : chr "badgen" $ : chr "base64" $ : chr "bcrypt" $ : chr "brotli" $ : chr "curl" $ : chr "js" $ : chr "jsonlite" $ : chr "maketools" $ : chr "mongolite" $ : chr "openssl" $ : chr "protolite" $ : chr "rjade" $ : chr "sys" $ : chr "unix" $ : chr "webp" $ : chr "webutils"

Example using{universe}:

packages<- universe::universe_ls("jeroen")str(packages)
 chr [1:18] "RAppArmor" "V8" "badgen" "base64" "bcrypt" "brotli" "curl" ...

5.1.3 Information of all packages in an universe

URL:https://<username>.r-universe.dev/api/packages

Parameters:

  • limit: Maximum number of results (default: 100). Use thels endpoint to determine the total number of packages and adjust the limit accordingly.

Example using{httr2}:

packages<- httr2::request("https://jeroen.r-universe.dev/api/packages")|>  httr2::req_user_agent("R-universe docs")|>  httr2::req_perform()|>  httr2::resp_body_json()# The result is a list of packagesstr(packages[[1]],max.level =1)
List of 75 $ Package           : chr "V8" $ Type              : chr "Package" $ Title             : chr "Embedded JavaScript and WebAssembly Engine for R" $ Version           : chr "8.0.1" $ Authors@R         : chr "c(\nperson(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\ncomment = c(ORC"| __truncated__ $ Description       : chr "An R interface to V8 <https://v8.dev>: Google's open\nsource JavaScript and WebAssembly engine. This package ca"| __truncated__ $ License           : chr "MIT + file LICENSE" $ URL               : chr "https://jeroen.r-universe.dev/V8" $ BugReports        : chr "https://github.com/jeroen/v8/issues" $ SystemRequirements: chr "On Linux you can build against libv8-dev (Debian)\nor v8-devel (Fedora). We also provide static libv8 binaries "| __truncated__ $ NeedsCompilation  : chr "yes" $ VignetteBuilder   : chr "knitr" $ RoxygenNote       : chr "7.3.1" $ Roxygen           : chr "list(load = \"installed\", markdown = TRUE)" $ Language          : chr "en-US" $ Encoding          : chr "UTF-8" $ Biarch            : chr "true" $ Config/pak/sysreqs: chr "libnode-dev" $ Repository        : chr "https://jeroen.r-universe.dev" $ Date/Publication  : chr "2025-11-09 16:31:04 UTC" $ RemoteUrl         : chr "https://github.com/jeroen/v8" $ RemoteRef         : chr "HEAD" $ RemoteSha         : chr "52f003f694aca63e582be44b801b8351acb21860" $ Packaged          :List of 2 $ Author            : chr "Jeroen Ooms [aut, cre] (ORCID: <https://orcid.org/0000-0002-4035-0289>),\nGeorge Stagg [ctb] (ORCID: <https://o"| __truncated__ $ Maintainer        : chr "Jeroen Ooms <[email protected]>" $ MD5sum            : chr "6414114cdd1de708bee049ce7b3f861c" $ _user             : chr "jeroen" $ _type             : chr "src" $ _file             : chr "V8_8.0.1.tar.gz" $ _fileid           : chr "4e55ab439577e676b027e96bbd7dcb2e2b5e895fbff9c1565cb43509a2f0512d" $ _filesize         : int 201141 $ _sha256           : chr "4e55ab439577e676b027e96bbd7dcb2e2b5e895fbff9c1565cb43509a2f0512d" $ _created          : chr "2025-11-14T08:59:43.000Z" $ _published        : chr "2025-11-14T09:05:28.710Z" $ _distro           : chr "noble" $ _jobs             :List of 13 $ _buildurl         : chr "https://github.com/r-universe/jeroen/actions/runs/19359417303" $ _status           : chr "success" $ _host             : chr "GitHub-Actions" $ _upstream         : chr "https://github.com/jeroen/v8" $ _commit           :List of 5 $ _maintainer       :List of 7 $ _registered       : logi TRUE $ _dependencies     :List of 8 $ _owner            : chr "jeroen" $ _selfowned        : logi TRUE $ _usedby           : int 374 $ _updates          :List of 16 $ _tags             :List of 2 $ _topics           :List of 4 $ _stars            : int 204 $ _contributors     :List of 11 $ _userbio          :List of 4 $ _downloads        :List of 2 $ _mentions         : int 2 $ _devurl           : chr "https://github.com/jeroen/v8" $ _searchresults    : int 584 $ _rbuild           : chr "4.5.2" $ _assets           :List of 11 $ _homeurl          : chr "https://github.com/jeroen/v8" $ _realowner        : chr "jeroen" $ _cranurl          : logi TRUE $ _releases         :List of 59 $ _exports          :List of 6 $ _help             :List of 3 $ _readme           : chr "https://github.com/jeroen/v8/raw/HEAD/README.md" $ _rundeps          :List of 3 $ _sysdeps          :List of 1 $ _vignettes        :List of 2 $ _score            : num 16 $ _indexed          : logi TRUE $ _nocasepkg        : chr "v8" $ _universes        :List of 1 $ _binaries         :List of 12

Example using{universe}:

packages<- universe::universe_all_packages("jeroen")# The result is a list of packagesstr(packages[[1]],max.level =1)
List of 75 $ Package           : chr "V8" $ Type              : chr "Package" $ Title             : chr "Embedded JavaScript and WebAssembly Engine for R" $ Version           : chr "8.0.1" $ Authors@R         : chr "c(\nperson(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\ncomment = c(ORC"| __truncated__ $ Description       : chr "An R interface to V8 <https://v8.dev>: Google's open\nsource JavaScript and WebAssembly engine. This package ca"| __truncated__ $ License           : chr "MIT + file LICENSE" $ URL               : chr "https://jeroen.r-universe.dev/V8" $ BugReports        : chr "https://github.com/jeroen/v8/issues" $ SystemRequirements: chr "On Linux you can build against libv8-dev (Debian)\nor v8-devel (Fedora). We also provide static libv8 binaries "| __truncated__ $ NeedsCompilation  : chr "yes" $ VignetteBuilder   : chr "knitr" $ RoxygenNote       : chr "7.3.1" $ Roxygen           : chr "list(load = \"installed\", markdown = TRUE)" $ Language          : chr "en-US" $ Encoding          : chr "UTF-8" $ Biarch            : chr "true" $ Config/pak/sysreqs: chr "libnode-dev" $ Repository        : chr "https://jeroen.r-universe.dev" $ Date/Publication  : chr "2025-11-09 16:31:04 UTC" $ RemoteUrl         : chr "https://github.com/jeroen/v8" $ RemoteRef         : chr "HEAD" $ RemoteSha         : chr "52f003f694aca63e582be44b801b8351acb21860" $ Packaged          :List of 2 $ Author            : chr "Jeroen Ooms [aut, cre] (ORCID: <https://orcid.org/0000-0002-4035-0289>),\nGeorge Stagg [ctb] (ORCID: <https://o"| __truncated__ $ Maintainer        : chr "Jeroen Ooms <[email protected]>" $ MD5sum            : chr "6414114cdd1de708bee049ce7b3f861c" $ _user             : chr "jeroen" $ _type             : chr "src" $ _file             : chr "V8_8.0.1.tar.gz" $ _fileid           : chr "4e55ab439577e676b027e96bbd7dcb2e2b5e895fbff9c1565cb43509a2f0512d" $ _filesize         : int 201141 $ _sha256           : chr "4e55ab439577e676b027e96bbd7dcb2e2b5e895fbff9c1565cb43509a2f0512d" $ _created          : chr "2025-11-14T08:59:43.000Z" $ _published        : chr "2025-11-14T09:05:28.710Z" $ _distro           : chr "noble" $ _jobs             :List of 13 $ _buildurl         : chr "https://github.com/r-universe/jeroen/actions/runs/19359417303" $ _status           : chr "success" $ _host             : chr "GitHub-Actions" $ _upstream         : chr "https://github.com/jeroen/v8" $ _commit           :List of 5 $ _maintainer       :List of 7 $ _registered       : logi TRUE $ _dependencies     :List of 8 $ _owner            : chr "jeroen" $ _selfowned        : logi TRUE $ _usedby           : int 374 $ _updates          :List of 16 $ _tags             :List of 2 $ _topics           :List of 4 $ _stars            : int 204 $ _contributors     :List of 11 $ _userbio          :List of 4 $ _downloads        :List of 2 $ _mentions         : int 2 $ _devurl           : chr "https://github.com/jeroen/v8" $ _searchresults    : int 584 $ _rbuild           : chr "4.5.2" $ _assets           :List of 11 $ _homeurl          : chr "https://github.com/jeroen/v8" $ _realowner        : chr "jeroen" $ _cranurl          : logi TRUE $ _releases         :List of 59 $ _exports          :List of 6 $ _help             :List of 3 $ _readme           : chr "https://github.com/jeroen/v8/raw/HEAD/README.md" $ _rundeps          :List of 3 $ _sysdeps          :List of 1 $ _vignettes        :List of 2 $ _score            : num 16 $ _indexed          : logi TRUE $ _nocasepkg        : chr "v8" $ _universes        :List of 1 $ _binaries         :List of 12

5.1.4 Information on a single package in an universe

URL:https://<username>.r-universe.dev/api/packages/<package>

Fields that start with an underscore_, like_topics, are not present in theDESCRIPTION file. Note that some fields that donot start with an underscore (the fieldsDate/Publication,Repository,RemoteUrl,RemoteRef andRemoteSha) get automatically inserted in the DESCRIPTION file by our build system. These same fields would be added automatically if you install a package using for instanceinstall_github(). The main purpose is that for instance the renv package will know where to find the source for the package, if it needs to pin an exact version.

Example using{httr2}:

v8<- httr2::request("https://jeroen.r-universe.dev/api/packages/V8")|>  httr2::req_user_agent("R-universe docs")|>  httr2::req_perform()|>  httr2::resp_body_json()str(v8,max.level =1)
List of 75 $ Package           : chr "V8" $ Type              : chr "Package" $ Title             : chr "Embedded JavaScript and WebAssembly Engine for R" $ Version           : chr "8.0.1" $ Authors@R         : chr "c(\nperson(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\ncomment = c(ORC"| __truncated__ $ Description       : chr "An R interface to V8 <https://v8.dev>: Google's open\nsource JavaScript and WebAssembly engine. This package ca"| __truncated__ $ License           : chr "MIT + file LICENSE" $ URL               : chr "https://jeroen.r-universe.dev/V8" $ BugReports        : chr "https://github.com/jeroen/v8/issues" $ SystemRequirements: chr "On Linux you can build against libv8-dev (Debian)\nor v8-devel (Fedora). We also provide static libv8 binaries "| __truncated__ $ NeedsCompilation  : chr "yes" $ VignetteBuilder   : chr "knitr" $ RoxygenNote       : chr "7.3.1" $ Roxygen           : chr "list(load = \"installed\", markdown = TRUE)" $ Language          : chr "en-US" $ Encoding          : chr "UTF-8" $ Biarch            : chr "true" $ Config/pak/sysreqs: chr "libnode-dev" $ Repository        : chr "https://jeroen.r-universe.dev" $ Date/Publication  : chr "2025-11-09 16:31:04 UTC" $ RemoteUrl         : chr "https://github.com/jeroen/v8" $ RemoteRef         : chr "HEAD" $ RemoteSha         : chr "52f003f694aca63e582be44b801b8351acb21860" $ Packaged          :List of 2 $ Author            : chr "Jeroen Ooms [aut, cre] (ORCID: <https://orcid.org/0000-0002-4035-0289>),\nGeorge Stagg [ctb] (ORCID: <https://o"| __truncated__ $ Maintainer        : chr "Jeroen Ooms <[email protected]>" $ MD5sum            : chr "6414114cdd1de708bee049ce7b3f861c" $ _user             : chr "jeroen" $ _type             : chr "src" $ _file             : chr "V8_8.0.1.tar.gz" $ _fileid           : chr "4e55ab439577e676b027e96bbd7dcb2e2b5e895fbff9c1565cb43509a2f0512d" $ _filesize         : int 201141 $ _sha256           : chr "4e55ab439577e676b027e96bbd7dcb2e2b5e895fbff9c1565cb43509a2f0512d" $ _created          : chr "2025-11-14T08:59:43.000Z" $ _published        : chr "2025-11-14T09:05:28.710Z" $ _distro           : chr "noble" $ _jobs             :List of 13 $ _buildurl         : chr "https://github.com/r-universe/jeroen/actions/runs/19359417303" $ _status           : chr "success" $ _host             : chr "GitHub-Actions" $ _upstream         : chr "https://github.com/jeroen/v8" $ _commit           :List of 5 $ _maintainer       :List of 7 $ _registered       : logi TRUE $ _dependencies     :List of 8 $ _owner            : chr "jeroen" $ _selfowned        : logi TRUE $ _usedby           : int 374 $ _updates          :List of 16 $ _tags             :List of 2 $ _topics           :List of 4 $ _stars            : int 204 $ _contributors     :List of 11 $ _userbio          :List of 4 $ _downloads        :List of 2 $ _mentions         : int 2 $ _devurl           : chr "https://github.com/jeroen/v8" $ _searchresults    : int 584 $ _rbuild           : chr "4.5.2" $ _assets           :List of 11 $ _homeurl          : chr "https://github.com/jeroen/v8" $ _realowner        : chr "jeroen" $ _cranurl          : logi TRUE $ _releases         :List of 59 $ _exports          :List of 6 $ _help             :List of 3 $ _readme           : chr "https://github.com/jeroen/v8/raw/HEAD/README.md" $ _rundeps          :List of 3 $ _sysdeps          :List of 1 $ _vignettes        :List of 2 $ _score            : num 16 $ _indexed          : logi TRUE $ _nocasepkg        : chr "v8" $ _universes        :List of 1 $ _binaries         :List of 12

Example using{universe}:

V8<- universe::universe_one_package("jeroen","V8")# The result is a liststr(V8,max.level =1)
List of 75 $ Package           : chr "V8" $ Type              : chr "Package" $ Title             : chr "Embedded JavaScript and WebAssembly Engine for R" $ Version           : chr "8.0.1" $ Authors@R         : chr "c(\nperson(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\ncomment = c(ORC"| __truncated__ $ Description       : chr "An R interface to V8 <https://v8.dev>: Google's open\nsource JavaScript and WebAssembly engine. This package ca"| __truncated__ $ License           : chr "MIT + file LICENSE" $ URL               : chr "https://jeroen.r-universe.dev/V8" $ BugReports        : chr "https://github.com/jeroen/v8/issues" $ SystemRequirements: chr "On Linux you can build against libv8-dev (Debian)\nor v8-devel (Fedora). We also provide static libv8 binaries "| __truncated__ $ NeedsCompilation  : chr "yes" $ VignetteBuilder   : chr "knitr" $ RoxygenNote       : chr "7.3.1" $ Roxygen           : chr "list(load = \"installed\", markdown = TRUE)" $ Language          : chr "en-US" $ Encoding          : chr "UTF-8" $ Biarch            : chr "true" $ Config/pak/sysreqs: chr "libnode-dev" $ Repository        : chr "https://jeroen.r-universe.dev" $ Date/Publication  : chr "2025-11-09 16:31:04 UTC" $ RemoteUrl         : chr "https://github.com/jeroen/v8" $ RemoteRef         : chr "HEAD" $ RemoteSha         : chr "52f003f694aca63e582be44b801b8351acb21860" $ Packaged          :List of 2 $ Author            : chr "Jeroen Ooms [aut, cre] (ORCID: <https://orcid.org/0000-0002-4035-0289>),\nGeorge Stagg [ctb] (ORCID: <https://o"| __truncated__ $ Maintainer        : chr "Jeroen Ooms <[email protected]>" $ MD5sum            : chr "6414114cdd1de708bee049ce7b3f861c" $ _user             : chr "jeroen" $ _type             : chr "src" $ _file             : chr "V8_8.0.1.tar.gz" $ _fileid           : chr "4e55ab439577e676b027e96bbd7dcb2e2b5e895fbff9c1565cb43509a2f0512d" $ _filesize         : int 201141 $ _sha256           : chr "4e55ab439577e676b027e96bbd7dcb2e2b5e895fbff9c1565cb43509a2f0512d" $ _created          : chr "2025-11-14T08:59:43.000Z" $ _published        : chr "2025-11-14T09:05:28.710Z" $ _distro           : chr "noble" $ _jobs             :List of 13 $ _buildurl         : chr "https://github.com/r-universe/jeroen/actions/runs/19359417303" $ _status           : chr "success" $ _host             : chr "GitHub-Actions" $ _upstream         : chr "https://github.com/jeroen/v8" $ _commit           :List of 5 $ _maintainer       :List of 7 $ _registered       : logi TRUE $ _dependencies     :List of 8 $ _owner            : chr "jeroen" $ _selfowned        : logi TRUE $ _usedby           : int 374 $ _updates          :List of 16 $ _tags             :List of 2 $ _topics           :List of 4 $ _stars            : int 204 $ _contributors     :List of 11 $ _userbio          :List of 4 $ _downloads        :List of 2 $ _mentions         : int 2 $ _devurl           : chr "https://github.com/jeroen/v8" $ _searchresults    : int 584 $ _rbuild           : chr "4.5.2" $ _assets           :List of 11 $ _homeurl          : chr "https://github.com/jeroen/v8" $ _realowner        : chr "jeroen" $ _cranurl          : logi TRUE $ _releases         :List of 59 $ _exports          :List of 6 $ _help             :List of 3 $ _readme           : chr "https://github.com/jeroen/v8/raw/HEAD/README.md" $ _rundeps          :List of 3 $ _sysdeps          :List of 1 $ _vignettes        :List of 2 $ _score            : num 16 $ _indexed          : logi TRUE $ _nocasepkg        : chr "v8" $ _universes        :List of 1 $ _binaries         :List of 12

5.2 Database dump

URL:https://<username>.r-universe.dev/api/dbdump

This API endpoint is not supported by the universe package yet.

ropensci<- mongolite::read_bson('https://ropensci.r-universe.dev/api/dbdump')

5.2.1 Search in an universe

URL:https://<username>.r-universe.dev/api/search Parameters:

  • q: Query string (supportsadvanced fields).
  • limit: Maximum number of results (default: 100). To retrieve all results:
    • Perform an initial query to get the valuetotal field.
    • Perform a second query withlimit=total.

Using{httr2}:

How many packages in the rOpenSci universe depend on httr2?

deps<- httr2::request("https://ropensci.r-universe.dev/api/search")|>  httr2::req_url_query(q ='needs:httr2')|># packages depending on {httr2}  httr2::req_user_agent("R-universe docs")|>  httr2::req_perform()|>  httr2::resp_body_json()str(deps,max.level =1)
List of 5 $ results:List of 40 $ query  :List of 2 $ skip   : int 0 $ limit  : int 100 $ total  : int 40
deps$total
[1] 40

Using{universe}:

deps<- universe::universe_search("ropensci",query ='needs:httr2')# The result is a list of packagesstr(deps,max.level =1)
List of 5 $ results:List of 40 $ query  :List of 2 $ skip   : int 0 $ limit  : int 100 $ total  : int 40
deps$total
[1] 40

5.3 Search all universes

URL:https://r-universe.dev/api/search Parameters:

  • q: the query string. You can use theadvanced fields.
  • limit: the number of results to return, by default a maximum of 100 but you can
    • do a first request to determine the total number of hitsN, returned in the response as thetotal field,
    • then do a second request usinglimit=N.

Example using{httr2}:

packages<- httr2::request("https://r-universe.dev/api/search")|>  httr2::req_url_query(q ='"weather data"')|>  httr2::req_user_agent("R-universe docs")|>  httr2::req_perform()|>  httr2::resp_body_json()str(packages,max.level =1)
List of 5 $ results:List of 83 $ query  :List of 1 $ skip   : int 0 $ limit  : int 100 $ total  : int 83
str(packages$results[[1]])
List of 15 $ _id           : chr "6912f9917b41ac9b6dee5689" $ Package       : chr "PEcAn.data.atmosphere" $ Title         : chr "PEcAn Functions Used for Managing Climate Driver Data" $ Description   : chr "The Predictive Ecosystem Carbon Analyzer (PEcAn) is a\nscientific workflow management tool that is designed to\"| __truncated__ $ _user         : chr "pecanproject" $ _usedby       : int 14 $ _searchresults: int 67 $ _score        : num 11.5 $ _uuid         : int 2879854 $ maintainer    :List of 5  ..$ name    : chr "David LeBauer"  ..$ email   : chr "[email protected]"  ..$ login   : chr "dlebauer"  ..$ linkedin: chr "in/dlebauer"  ..$ uuid    : int 464871 $ updated       : int 1762846198 $ stars         : int 218 $ topics        :List of 13  ..$ : chr "climate-data"  ..$ : chr "data-standardization"  ..$ : chr "bayesian"  ..$ : chr "cyberinfrastructure"  ..$ : chr "data-assimilation"  ..$ : chr "data-science"  ..$ : chr "ecosystem-model"  ..$ : chr "ecosystem-science"  ..$ : chr "forecasting"  ..$ : chr "meta-analysis"  ..$ : chr "national-science-foundation"  ..$ : chr "pecan"  ..$ : chr "plants" $ match         : num 126 $ rank          : num 1451

Example using{universe}:

packages<- universe::global_search(query ='"weather data"',limit =100L)str(packages,max.level =1)
List of 5 $ results:List of 83 $ query  :List of 1 $ skip   : int 0 $ limit  : int 100 $ total  : int 83
str(packages$results[[1]])
List of 15 $ _id           : chr "6912f9917b41ac9b6dee5689" $ Package       : chr "PEcAn.data.atmosphere" $ Title         : chr "PEcAn Functions Used for Managing Climate Driver Data" $ Description   : chr "The Predictive Ecosystem Carbon Analyzer (PEcAn) is a\nscientific workflow management tool that is designed to\"| __truncated__ $ _user         : chr "pecanproject" $ _usedby       : int 14 $ _searchresults: int 67 $ _score        : num 11.5 $ _uuid         : int 2879854 $ maintainer    :List of 5  ..$ name    : chr "David LeBauer"  ..$ email   : chr "[email protected]"  ..$ login   : chr "dlebauer"  ..$ linkedin: chr "in/dlebauer"  ..$ uuid    : int 464871 $ updated       : int 1762846198 $ stars         : int 218 $ topics        :List of 13  ..$ : chr "climate-data"  ..$ : chr "data-standardization"  ..$ : chr "bayesian"  ..$ : chr "cyberinfrastructure"  ..$ : chr "data-assimilation"  ..$ : chr "data-science"  ..$ : chr "ecosystem-model"  ..$ : chr "ecosystem-science"  ..$ : chr "forecasting"  ..$ : chr "meta-analysis"  ..$ : chr "national-science-foundation"  ..$ : chr "pecan"  ..$ : chr "plants" $ match         : num 126 $ rank          : num 1451

Note that searching globally only returns “indexed” packages: if a package is included in several universes, it still shows up only once in search results because of ourdeduplication efforts.

5.4 Database dump (all universes)

URL:https://r-universe.dev/api/dbdump

This API endpoint is not supported by the universe package yet.

dump<- mongolite::read_bson('https://r-universe.dev/api/dbdump')

[8]ページ先頭

©2009-2025 Movatter.jp