{"id":44726166,"url":"https://github.com/jsattler/go-comdirect","last_synced_at":"2026-02-15T17:42:02.631Z","repository":{"id":44966011,"uuid":"345307824","full_name":"jsattler/go-comdirect","owner":"jsattler","description":"Go module and CLI tool to interact with the comdirect REST API","archived":false,"fork":false,"pushed_at":"2024-01-12T22:32:17.000Z","size":1465,"stargazers_count":42,"open_issues_count":16,"forks_count":9,"subscribers_count":6,"default_branch":"main","last_synced_at":"2024-06-19T02:00:26.774Z","etag":null,"topics":["banking","cli","comdirect","comdirect-api","finance","go","golang","library"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jsattler.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2021-03-07T09:39:25.000Z","updated_at":"2024-05-30T10:15:28.000Z","dependencies_parsed_at":"2024-06-19T01:38:43.300Z","dependency_job_id":"f9e0ca0d-c4b1-4292-9238-485eb79ebe05","html_url":"https://github.com/jsattler/go-comdirect","commit_stats":null,"previous_names":["jsattler/comdirect-golang","j-sattler/comdirect-golang"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/jsattler/go-comdirect","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsattler%2Fgo-comdirect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsattler%2Fgo-comdirect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsattler%2Fgo-comdirect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsattler%2Fgo-comdirect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jsattler","download_url":"https://codeload.github.com/jsattler/go-comdirect/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jsattler%2Fgo-comdirect/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29486036,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T15:33:17.885Z","status":"ssl_error","status_checked_at":"2026-02-15T15:32:53.698Z","response_time":118,"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":["banking","cli","comdirect","comdirect-api","finance","go","golang","library"],"created_at":"2026-02-15T17:42:01.814Z","updated_at":"2026-02-15T17:42:02.626Z","avatar_url":"https://github.com/jsattler.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"go-comdirect\n===\n![version](https://img.shields.io/github/v/release/jsattler/go-comdirect?include_prereleases)\n[![Apache License v2](https://img.shields.io/github/license/jsattler/go-comdirect)](http://www.apache.org/licenses/)\n[![GitHub go.mod Go version of a Go module](https://img.shields.io/github/go-mod/go-version/jsattler/go-comdirect)](https://github.com/jsattler/go-comdirect)\n\n`go-comdirect` is both a client library and [CLI tool](comdirect) to interact with\nthe [comdirect REST API](https://www.comdirect.de/cms/kontakt-zugaenge-api.html).\n\n\u003e **Additional Notes**\n\u003e * The library is currently unstable and will change frequently until version 1.0.0 is released\n\u003e * Please read the comdirect API documentation prior to using this software\n\u003e * Use of this software is at your own risk\n\u003e * 10 requests per second are allowed by comdirect\n\u003e * 3 invalid TAN validation attempts will cancel the online access \n\nFeatures\n---\n* **Auth:** Authenticate and authorize with the comdirect API.\n* **Account:** Access your account data like balances or transactions.\n* **Depot:** Access your depot data like balances, positions or transactions.\n* **Instrument:** Access instrument data by providing a WKN, ISIN or symbol.\n* **Order:** create, modify and delete orders.\nIn addition, you can query the order book and the status of individual orders, as well as view the display the cost statement for an order. (open #8)\n* **Quote:** Do live trading and prepare the query of a quote or execute it (open #9).\n* **Documents:** Access and download Postbox-documents.\n* **Reports:** Access aggregated reports for multiple of your comdirect products.\n\nInstall\n---\nUse `go get` to install the latest version of this library:\n```bash\n$ go get -u github.com/jsattler/go-comdirect\n```\n\nUse `go install` to install the `comdirect` CLI tool:\n```shell\ngo install github.com/jsattler/go-comdirect/comdirect@main\n```\n\nQuick Start\n---\n```go\n// omitting error validation, imports and packages\n\noptions := \u0026comdirect.AuthOptions{\n    Username:     os.Getenv(\"COMDIRECT_USERNAME\"),\n    Password:     os.Getenv(\"COMDIRECT_PASSWORD\"),\n    ClientId:     os.Getenv(\"COMDIRECT_CLIENT_ID\"),\n    ClientSecret: os.Getenv(\"COMDIRECT_CLIENT_SECRET\"),\n}\n\nclient := comdirect.NewWithAuthOptions(options)\n```\n\nDocumentation\n---\nYou can find detailed documentation\n* [on how to install and use the comdirect CLI tool](comdirect/README.md)\n* on this [website](https://jsattler.github.io/go-comdirect/#/)\n* in the [`docs/`](docs/getting-started.md) folder\n* or in the tests of [`pkg/comdirect`](pkg/comdirect)\n\n\n## Contributing\nYour contributions are appreciated! Please refer to [CONTRIBUTING.md](CONTRIBUTING.md) for further information.\n\n## License\nPlease refer to [LICENSE](LICENSE) for further information.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsattler%2Fgo-comdirect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjsattler%2Fgo-comdirect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjsattler%2Fgo-comdirect/lists"}