{"id":17436089,"url":"https://github.com/idebeijer/satisfactory-client-go","last_synced_at":"2026-02-08T21:09:15.817Z","repository":{"id":257812157,"uuid":"867643712","full_name":"idebeijer/satisfactory-client-go","owner":"idebeijer","description":"A Golang client for the Satisfactory dedicated server HTTP API.","archived":false,"fork":false,"pushed_at":"2025-01-27T21:54:21.000Z","size":28,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-27T22:35:27.944Z","etag":null,"topics":["client-go","golang","satisfactory","satisfactory-api","satisfactory-community"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/idebeijer/satisfactory-client-go/satisfactory","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/idebeijer.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":"2024-10-04T12:57:37.000Z","updated_at":"2025-01-27T21:54:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"94019c14-823f-426c-a524-93e4fc1480e6","html_url":"https://github.com/idebeijer/satisfactory-client-go","commit_stats":null,"previous_names":["idebeijer/satisfactory-client-go"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idebeijer%2Fsatisfactory-client-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idebeijer%2Fsatisfactory-client-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idebeijer%2Fsatisfactory-client-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idebeijer%2Fsatisfactory-client-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/idebeijer","download_url":"https://codeload.github.com/idebeijer/satisfactory-client-go/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":236745923,"owners_count":19198101,"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":["client-go","golang","satisfactory","satisfactory-api","satisfactory-community"],"created_at":"2024-10-17T10:02:09.972Z","updated_at":"2026-02-08T21:09:15.788Z","avatar_url":"https://github.com/idebeijer.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Satisfactory Client Go\n\nThis Go client library provides an interface to interact with the Satisfactory dedicated server HTTP API.\n\n## Installation\n\nTo install the library, use go get:\n```bash\ngo get github.com/idebeijer/satisfactory-client-go/satisfactory\n```\n\n## Usage\n\nCreate the client and login with the password. The password is the same as the one you use to login to the server.\n```go\npackage main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\n\t\"github.com/idebeijer/satisfactory-client-go/satisfactory\"\n)\n\nfunc main() {\n\tctx := context.Background()\n\tclient := satisfactory.NewClient(\"https://localhost:7777\", nil, true)\n\n\tpassword := os.Getenv(\"SF_PASSWD\") // Replace with your password\n\tif _, err := client.PasswordLogin(ctx, \"Administrator\", password); err != nil {\n\t\tfmt.Println(err)\n\t\treturn\n\t}\n}\n```\n\n## Examples\n### Run a health check\n```go\npackage main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/idebeijer/satisfactory-client-go/satisfactory\"\n)\n\nfunc main() {\n\tctx := context.Background()\n\tclient := satisfactory.NewClient(\"https://localhost:7777\", nil, true)\n\n\thealthcheck, _, err := client.HealthCheck(ctx, \"Custom data from client\")\n\tif err != nil {\n\t\treturn\n\t}\n\tif healthcheck.Health != \"healthy\" {\n\t\tfmt.Println(\"Healthcheck failed\")\n\t\treturn\n\t}\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidebeijer%2Fsatisfactory-client-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fidebeijer%2Fsatisfactory-client-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidebeijer%2Fsatisfactory-client-go/lists"}