{"id":13857479,"url":"https://github.com/ropensci/roadoi","last_synced_at":"2025-10-22T05:51:18.453Z","repository":{"id":12544088,"uuid":"72121243","full_name":"ropensci/roadoi","owner":"ropensci","description":"Use Unpaywall with R","archived":false,"fork":false,"pushed_at":"2024-09-26T07:41:32.000Z","size":547,"stargazers_count":66,"open_issues_count":8,"forks_count":3,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-09-08T13:32:24.307Z","etag":null,"topics":["altmetrics","code4lib","oadoi","open-access","peer-reviewed","r","r-package","rstats","unpaywall","webclient"],"latest_commit_sha":null,"homepage":"https://docs.ropensci.org/roadoi","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ropensci.png","metadata":{"files":{"readme":"README.Rmd","changelog":"NEWS","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":"codemeta.json","zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-10-27T15:19:59.000Z","updated_at":"2025-06-04T06:32:05.000Z","dependencies_parsed_at":"2025-09-08T13:22:10.542Z","dependency_job_id":"85bfbf08-84d2-4de5-b280-84ece3c83fff","html_url":"https://github.com/ropensci/roadoi","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/ropensci/roadoi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ropensci%2Froadoi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ropensci%2Froadoi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ropensci%2Froadoi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ropensci%2Froadoi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ropensci","download_url":"https://codeload.github.com/ropensci/roadoi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ropensci%2Froadoi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280389295,"owners_count":26322507,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-22T02:00:06.515Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["altmetrics","code4lib","oadoi","open-access","peer-reviewed","r","r-package","rstats","unpaywall","webclient"],"created_at":"2024-08-05T03:01:38.398Z","updated_at":"2025-10-22T05:51:18.428Z","avatar_url":"https://github.com/ropensci.png","language":"R","funding_links":[],"categories":["R"],"sub_categories":[],"readme":"# roadoi - Use Unpaywall with R\n\n```{r echo=FALSE}\nknitr::opts_chunk$set(\n  comment = \"#\u003e\",\n  collapse = TRUE,\n  warning = FALSE,\n  message = FALSE\n)\n```\n\n[![R build](https://github.com/ropensci/roadoi/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ropensci/roadoi/actions)\n[![cran version](http://www.r-pkg.org/badges/version/roadoi)](https://cran.r-project.org/package=roadoi)\n[![rstudio mirror downloads](http://cranlogs.r-pkg.org/badges/roadoi)](https://github.com/r-hub/cranlogs.app)\n[![review](https://badges.ropensci.org/115_status.svg)](https://github.com/ropensci/software-review/issues/115)\n\n\n\nroadoi interacts with the [Unpaywall REST API](https://unpaywall.org/products/api), \nan openly available web-interface which returns metadata about open access versions of scholarly works. \n\nThis client supports the most recent API Version 2.\n\nAPI Documentation: \u003chttps://unpaywall.org/products/api\u003e\n\n## How do I use it? \n\nUse the `oadoi_fetch()` function in this package to get open access status\ninformation and full-text links from Unpaywall.\n\n\n```{r}\nroadoi::oadoi_fetch(dois = c(\"10.1038/ng.3260\", \"10.1093/nar/gkr1047\"), \n                    email = \"najko.jahn@gmail.com\")\n```\n\nThere are no API restrictions. However, providing an email address is required and a rate limit of 100k is suggested. If you need to access more data, use the [data dump](https://unpaywall.org/products/snapshot) instead.\n\n### RStudio Addin\n\nThis package also has a RStudio Addin for easily finding free full-texts in RStudio.\n\n![](man/figures/oadoi_addin.gif)\n\n## How do I get it? \n\nInstall and load from [CRAN](https://cran.r-project.org/package=roadoi):\n\n```{r eval=FALSE}\ninstall.packages(\"roadoi\")\nlibrary(roadoi)\n```\n\nTo install the development version, use the [devtools package](https://cran.r-project.org/package=devtools)\n\n```{r eval = FALSE}\ndevtools::install_github(\"ropensci/roadoi\")\nlibrary(roadoi)\n```\n\n## Documentation\n\nSee \u003chttps://docs.ropensci.org/roadoi/\u003e to get started.\n\n## Meta\n\nPlease note that this project is released with a [Contributor Code of Conduct](https://github.com/ropensci/roadoi/blob/master/CONDUCT.md). By participating in this project you agree to abide by its terms.\n\nLicense: MIT\n\nPlease use the [issue tracker](https://github.com/ropensci/roadoi/issues) for bug reporting and feature requests.\n\n[![ropensci_footer](https://ropensci.org/public_images/ropensci_footer.png)](https://ropensci.org)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fropensci%2Froadoi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fropensci%2Froadoi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fropensci%2Froadoi/lists"}