{"id":14067798,"url":"https://github.com/holistics/holistics-r","last_synced_at":"2026-06-20T11:31:47.104Z","repository":{"id":56089754,"uuid":"173292456","full_name":"holistics/holistics-r","owner":"holistics","description":"R package to interact with Holistics API","archived":false,"fork":false,"pushed_at":"2020-11-26T01:40:41.000Z","size":11,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-02-23T01:44:26.165Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/holistics.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-03-01T11:40:07.000Z","updated_at":"2025-02-15T05:42:09.000Z","dependencies_parsed_at":"2022-08-15T13:00:27.603Z","dependency_job_id":null,"html_url":"https://github.com/holistics/holistics-r","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/holistics/holistics-r","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/holistics%2Fholistics-r","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/holistics%2Fholistics-r/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/holistics%2Fholistics-r/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/holistics%2Fholistics-r/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/holistics","download_url":"https://codeload.github.com/holistics/holistics-r/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/holistics%2Fholistics-r/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34568741,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"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":[],"created_at":"2024-08-13T07:05:47.214Z","updated_at":"2026-06-20T11:31:47.086Z","avatar_url":"https://github.com/holistics.png","language":"R","funding_links":[],"categories":["R"],"sub_categories":[],"readme":"# R package for Holistics API\n\nThis is our R package which allows R users to export Holistics' report data by inputting:\n\n- Your tenant URL\n- Your API-key\n- Report's ID\n- A list of filters applied to that report\n\n## Installation\n\nYou can either install Holistics from CRAN, or grab the latest version from GitHub.\n\n- Install from CRAN:\n\n```\ninstall_packages(\"Holistics\")\n```\n\n- Install from GitHub:\n\n```\ndevtools::install_github(\"holistics/holisticsr\")\n```\n\n## Basic usage\n\nFor most use cases, you can just use `export_data()` to download report's data. For example, we have a complete report link with all filters: \n\nhttps://secure.holistics.io/queries/1846-users-growth/queries?start_date=2019-01-01\u0026end_date=2019-01-31\u0026status=active\n\nThis link will translate into the following function call:\n\n```\nreport_data = export_data(url = \"https://secure.holistics.io/\", \n                          api_key = \"api_key\",\n                          report_id = \"1846-users-growth\",\n                          filters = list(start_date = \"2019-01-01\", \n                                         end_date = \"2019-01-31\", \n                                         status = \"active\"))\n```\n\nBehind the scene this function uses three assistance functions consecutively:\n\n```\n# Submit an export request\njob_id = submit_request(url, api_key, report_id, filters)\n\n# Check result status with a HTTP request. As long as the request is valid,\n# this will run until the result is ready for downloading.\n# If the request is invalid, this will raise an error.\ncheck_result(url, api_key, job_id)\n\n# Download report result after it is ready\nresult_df = download_result(url, api_key, job_id)\n```\n\nIn other words, you can use these functions individually to gain greater control of the export creation and data download process.\n\n\n## Documentation\n\nHolistics' API documentation, as well as full usage of Holistics R \u0026 Python libraries can be found here: https://docs.holistics.io/reference\n\n\n## Copyright and License:\n\nCopyright (c) 2019, Holistics Software\nHolisticsR source code is licensed under [MIT License](https://github.com/holistics/holistics-r/blob/master/LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fholistics%2Fholistics-r","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fholistics%2Fholistics-r","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fholistics%2Fholistics-r/lists"}