{"id":20279180,"url":"https://github.com/peterhellberg/bugsnag-data","last_synced_at":"2026-06-22T19:31:39.054Z","repository":{"id":57574318,"uuid":"82823444","full_name":"peterhellberg/bugsnag-data","owner":"peterhellberg","description":"Dump Bugsnag data using the Data access API","archived":false,"fork":false,"pushed_at":"2017-02-24T13:17:07.000Z","size":11,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-01T21:38:13.737Z","etag":null,"topics":["bugsnag","data","go"],"latest_commit_sha":null,"homepage":"https://docs.bugsnag.com/api/data-access/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/peterhellberg.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2017-02-22T15:56:15.000Z","updated_at":"2017-02-23T12:23:30.000Z","dependencies_parsed_at":"2022-08-31T04:31:19.216Z","dependency_job_id":null,"html_url":"https://github.com/peterhellberg/bugsnag-data","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/peterhellberg/bugsnag-data","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterhellberg%2Fbugsnag-data","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterhellberg%2Fbugsnag-data/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterhellberg%2Fbugsnag-data/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterhellberg%2Fbugsnag-data/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peterhellberg","download_url":"https://codeload.github.com/peterhellberg/bugsnag-data/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterhellberg%2Fbugsnag-data/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34663524,"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-22T02:00:06.391Z","response_time":106,"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":["bugsnag","data","go"],"created_at":"2024-11-14T13:28:43.996Z","updated_at":"2026-06-22T19:31:39.034Z","avatar_url":"https://github.com/peterhellberg.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bugsnag-data\n\n[![Build Status](https://travis-ci.org/peterhellberg/bugsnag-data.svg?branch=master)](https://travis-ci.org/peterhellberg/bugsnag-data)\n[![Go Report Card](https://goreportcard.com/badge/github.com/peterhellberg/bugsnag-data)](https://goreportcard.com/report/github.com/peterhellberg/bugsnag-data)\n[![License MIT](https://img.shields.io/badge/license-MIT-lightgrey.svg?style=flat)](https://github.com/peterhellberg/bugsnag-data#license-mit)\n\nDump Bugsnag data using the Data access API\n\n## API documentation\n\nhttps://docs.bugsnag.com/api/data-access/\n\n## Data access API key\n\nThe key can be found under the organization section of https://app.bugsnag.com/settings/\n\n## Installation\n\n```\ngo get -u github.com/peterhellberg/bugsnag-data\n```\n\n## Usage example\n\n```sh\nUsage of bugsnag-data:\n  -delay duration\n    \tThe delay between each request (default 1s)\n  -key string\n    \tData access API key (required)\n  -max int\n    \tMax number of requests to make (0 means unlimited)\n```\n\nThe first argument after the flags have been parsed is used as the path (of the first request to the Data access API).\n\n```bash\n$ bugsnag-data -key [REDACTED] /accounts | jq .[0].account_creator\n\nGET https://api.bugsnag.com/accounts\n{\n  \"account_admin\": true,\n  \"email\": \"[REDACTED]\",\n  \"html_url\": \"https://app.bugsnag.com/settings/[REDACTED]/collaborators/[REDACTED]\",\n  \"id\": \"[REDACTED]\",\n  \"name\": \"[REDACTED]\",\n  \"projects_url\": \"https://api.bugsnag.com/users/[REDACTED]/projects\",\n  \"url\": \"https://api.bugsnag.com/users/[REDACTED]\"\n}\n```\n\n`bugsnag-data` will follow next in the [Link header](https://tools.ietf.org/html/rfc5988)\nuntil reaching a response with no Link header or having done the max number of requests\nas specified in the max command line flag.\n\n## License (MIT)\n\nCopyright (c) 2017 [Peter Hellberg](https://c7.se/)\n\n\u003e Permission is hereby granted, free of charge, to any person obtaining\n\u003e a copy of this software and associated documentation files (the\n\u003e \"Software\"), to deal in the Software without restriction, including\n\u003e without limitation the rights to use, copy, modify, merge, publish,\n\u003e distribute, sublicense, and/or sell copies of the Software, and to\n\u003e permit persons to whom the Software is furnished to do so, subject to\n\u003e the following conditions:\n\n\u003e The above copyright notice and this permission notice shall be\n\u003e included in all copies or substantial portions of the Software.\n\n\u003e THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\n\u003e EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\u003e MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n\u003e NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\n\u003e LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n\u003e OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n\u003e WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeterhellberg%2Fbugsnag-data","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeterhellberg%2Fbugsnag-data","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeterhellberg%2Fbugsnag-data/lists"}