{"id":20324567,"url":"https://github.com/netascode/go-meraki","last_synced_at":"2026-06-04T02:31:04.557Z","repository":{"id":255438837,"uuid":"850626585","full_name":"netascode/go-meraki","owner":"netascode","description":"A Go client library for Cisco Meraki.","archived":false,"fork":false,"pushed_at":"2025-02-17T09:27:07.000Z","size":36,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-17T10:29:05.844Z","etag":null,"topics":["cisco","go","golang","meraki"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/netascode.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-01T10:24:59.000Z","updated_at":"2025-02-17T09:27:11.000Z","dependencies_parsed_at":"2024-09-02T04:57:11.934Z","dependency_job_id":"38acc513-1937-4ad4-955e-cc3b123198eb","html_url":"https://github.com/netascode/go-meraki","commit_stats":null,"previous_names":["netascode/go-meraki"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netascode%2Fgo-meraki","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netascode%2Fgo-meraki/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netascode%2Fgo-meraki/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/netascode%2Fgo-meraki/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/netascode","download_url":"https://codeload.github.com/netascode/go-meraki/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241827463,"owners_count":20026693,"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":["cisco","go","golang","meraki"],"created_at":"2024-11-14T19:34:31.849Z","updated_at":"2026-06-04T02:31:04.550Z","avatar_url":"https://github.com/netascode.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Tests](https://github.com/netascode/go-meraki/actions/workflows/test.yml/badge.svg)](https://github.com/netascode/go-meraki/actions/workflows/test.yml)\n\n# go-meraki\n\n`go-meraki` is a Go client library for Cisco Meraki. It is based on Nathan's excellent [goaci](https://github.com/brightpuddle/goaci) module and features a simple, extensible API and [advanced JSON manipulation](#result-manipulation).\n\n## Getting Started\n\n### Installing\n\nTo start using `go-meraki`, install Go and `go get`:\n\n`$ go get -u github.com/netascode/go-meraki`\n\n### Basic Usage\n\n```go\npackage main\n\nimport \"github.com/netascode/go-meraki\"\n\nfunc main() {\n    client, _ := meraki.NewClient(\"abc123\")\n\n    res, _ := client.Get(\"/organizations\")\n    println(res.Get(\"0.name\").String())\n}\n```\n\nThis will print something like:\n\n```\nMy First Organization\n```\n\n#### Result manipulation\n\n`meraki.Result` uses GJSON to simplify handling JSON results. See the [GJSON](https://github.com/tidwall/gjson) documentation for more detail.\n\n```go\nres, _ := client.Get(\"/organizations\")\n\nfor _, obj := range res.Array() {\n    println(obj.Get(\"@pretty\").String()) // pretty print network objects\n}\n```\n\n#### POST data creation\n\n`meraki.Body` is a wrapper for [SJSON](https://github.com/tidwall/sjson). SJSON supports a path syntax simplifying JSON creation.\n\n```go\nbody := meraki.Body{}.\n    Set(\"name\", \"NewNetwork1\").\n    Set(\"productTypes\", []string{\"switch\"})\nclient.Post(\"/organizations/123456/networks\", body.Str)\n```\n\n## Documentation\n\nSee the [documentation](https://godoc.org/github.com/netascode/go-meraki) for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetascode%2Fgo-meraki","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnetascode%2Fgo-meraki","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnetascode%2Fgo-meraki/lists"}