{"id":16446491,"url":"https://github.com/edoardottt/bugcrowd-go","last_synced_at":"2025-07-26T21:37:21.305Z","repository":{"id":61625790,"uuid":"541669147","full_name":"edoardottt/bugcrowd-go","owner":"edoardottt","description":"Golang Bugcrowd API client","archived":false,"fork":false,"pushed_at":"2024-11-10T09:11:00.000Z","size":45,"stargazers_count":8,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-01T03:10:28.650Z","etag":null,"topics":["api","bug-bounty","bugbounty","bugcrowd","bugcrowd-api","bugcrowd-client","golang","security"],"latest_commit_sha":null,"homepage":"https://edoardottt.com/","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/edoardottt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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":null},"funding":{"github":"edoardottt","liberapay":"edoardottt","patreon":"edoardottt","ko_fi":"edoardottt","open_collective":"edoardottt","custom":"https://www.paypal.me/edoardottt"}},"created_at":"2022-09-26T16:01:00.000Z","updated_at":"2024-11-10T09:11:03.000Z","dependencies_parsed_at":"2023-11-29T11:26:41.802Z","dependency_job_id":"9d8406e6-7cf7-4d9e-bbec-cfcf82ad76f6","html_url":"https://github.com/edoardottt/bugcrowd-go","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoardottt%2Fbugcrowd-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoardottt%2Fbugcrowd-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoardottt%2Fbugcrowd-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoardottt%2Fbugcrowd-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edoardottt","download_url":"https://codeload.github.com/edoardottt/bugcrowd-go/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238445911,"owners_count":19473835,"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","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":["api","bug-bounty","bugbounty","bugcrowd","bugcrowd-api","bugcrowd-client","golang","security"],"created_at":"2024-10-11T09:47:48.979Z","updated_at":"2025-02-12T09:32:44.771Z","avatar_url":"https://github.com/edoardottt.png","language":"Go","funding_links":["https://github.com/sponsors/edoardottt","https://liberapay.com/edoardottt","https://patreon.com/edoardottt","https://ko-fi.com/edoardottt","https://opencollective.com/edoardottt","https://www.paypal.me/edoardottt"],"categories":[],"sub_categories":[],"readme":"# bugcrowd-go\nSimple Golang client to interact with Bugcrowd API. See the [API documentation here](https://docs.bugcrowd.com/api/2021-10-28/).  \n\n\u003ca href=\"https://github.com/edoardottt/bugcrowd-go/actions\"\u003e\n    \u003cimg src=\"https://github.com/edoardottt/bugcrowd-go/actions/workflows/go.yml/badge.svg\" alt=\"workflows\" /\u003e\n\u003c/a\u003e\n\u003ca href=\"https://goreportcard.com/report/github.com/edoardottt/bugcrowd-go\"\u003e\n    \u003cimg src=\"https://goreportcard.com/badge/github.com/edoardottt/bugcrowd-go\" alt=\"goreportcard\" /\u003e\n\u003c/a\u003e\n\nUsage 🚀\n-------\n```Go\npackage main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\tbugcrowd \"github.com/edoardottt/bugcrowd-go\"\n\t\"github.com/edoardottt/bugcrowd-go/pkg/api\"\n)\n\nfunc main() {\n\tb := bugcrowd.New(\"username\", \"token\")\n\n\tqueryOptions := api.SubmissionQuery{}\n\tpageOptions := api.PageOptions{}\n\tsubmissions, _, err := b.Services.FetchSubmissions(context.TODO(), \u0026queryOptions, \u0026pageOptions)\n\n\tif err != nil {\n\t\tfmt.Println(err)\n\t}\n\n\tfor _, submission := range submissions.Data {\n\t\tfmt.Println(submission.ID)\n\t}\n}\n```\n\nContributing 🛠\n-------\n\nJust open an [issue](https://github.com/edoardottt/bugcrowd-go/issues) / [pull request](https://github.com/edoardottt/bugcrowd-go/pulls).\n\nBefore opening a pull request, download [golangci-lint](https://golangci-lint.run/usage/install/) and run\n```bash\ngolangci-lint run\n```\nIf there aren't errors, go ahead :)\n\nInspired by [liamg/hackerone](https://github.com/liamg/hackerone).\n\nLicense 📝\n-------\n\nThis repository is under [MIT License](https://github.com/edoardottt/bugcrowd-go/blob/main/LICENSE).  \n[edoardottt.com](https://edoardottt.com/) to contact me.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedoardottt%2Fbugcrowd-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedoardottt%2Fbugcrowd-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedoardottt%2Fbugcrowd-go/lists"}