{"id":41521389,"url":"https://github.com/fterrag/go-zoom","last_synced_at":"2026-01-23T20:48:50.806Z","repository":{"id":65594792,"uuid":"594927204","full_name":"fterrag/go-zoom","owner":"fterrag","description":"A lightweight Zoom API client for Go","archived":false,"fork":false,"pushed_at":"2024-06-12T19:32:00.000Z","size":43,"stargazers_count":2,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-06-20T11:14:30.606Z","etag":null,"topics":["go","golang","zoom","zoom-api","zoom-client"],"latest_commit_sha":null,"homepage":"","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/fterrag.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-30T02:33:34.000Z","updated_at":"2024-06-12T19:32:00.000Z","dependencies_parsed_at":"2024-05-29T18:21:51.893Z","dependency_job_id":null,"html_url":"https://github.com/fterrag/go-zoom","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fterrag/go-zoom","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fterrag%2Fgo-zoom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fterrag%2Fgo-zoom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fterrag%2Fgo-zoom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fterrag%2Fgo-zoom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fterrag","download_url":"https://codeload.github.com/fterrag/go-zoom/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fterrag%2Fgo-zoom/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28699924,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T17:25:48.045Z","status":"ssl_error","status_checked_at":"2026-01-23T17:25:47.153Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["go","golang","zoom","zoom-api","zoom-client"],"created_at":"2026-01-23T20:48:50.022Z","updated_at":"2026-01-23T20:48:50.798Z","avatar_url":"https://github.com/fterrag.png","language":"Go","readme":"# go-zoom\n\nThe `zoom` packages provides a lightweight [Zoom API](https://marketplace.zoom.us/docs/api-reference/introduction/) client. Coverage of endpoints is minimal, but [users.go](zoom/users.go) and [meetings.go](zoom/meetings.go) should act as good examples for implementing support for additional endpoints.\n\nThis package is built to be used with [Server-to-Server OAuth](https://marketplace.zoom.us/docs/guides/build/server-to-server-oauth-app/) apps.\n\n## Example Usage\n\n```go\npackage main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"log\"\n\t\"net/http\"\n\t\"os\"\n\n\t\"github.com/fterrag/go-zoom/zoom\"\n)\n\nfunc main() {\n\tctx := context.Background()\n\n\thttpClient := \u0026http.Client{}\n\tclient := zoom.NewClient(httpClient, os.Getenv(\"ZOOM_ACCOUNT_ID\"), os.Getenv(\"ZOOM_CLIENT_ID\"), os.Getenv(\"ZOOM_CLIENT_SECRET\"), nil)\n\n\tres, _, err := client.Users.List(ctx, nil)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tfmt.Printf(\"%d users\\n\\n\", len(res.Users))\n\n\tfor _, user := range res.Users {\n\t\tfmt.Printf(\"ID: %s\\nDisplay Name: %s\\nEmail: %s\\n\\n\", user.ID, user.DisplayName, user.Email)\n\t}\n}\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffterrag%2Fgo-zoom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffterrag%2Fgo-zoom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffterrag%2Fgo-zoom/lists"}