{"id":18409908,"url":"https://github.com/toorop/go-bittrex","last_synced_at":"2025-04-04T19:12:08.761Z","repository":{"id":16247965,"uuid":"18995798","full_name":"toorop/go-bittrex","owner":"toorop","description":"Go  binding for the Bittrex crypto-currency exchange API.","archived":false,"fork":false,"pushed_at":"2022-06-17T06:53:04.000Z","size":103,"stargazers_count":230,"open_issues_count":13,"forks_count":102,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-03-28T18:14:13.661Z","etag":null,"topics":[],"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/toorop.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}},"created_at":"2014-04-21T15:00:37.000Z","updated_at":"2024-02-22T01:52:52.000Z","dependencies_parsed_at":"2022-06-29T19:41:15.804Z","dependency_job_id":null,"html_url":"https://github.com/toorop/go-bittrex","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toorop%2Fgo-bittrex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toorop%2Fgo-bittrex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toorop%2Fgo-bittrex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toorop%2Fgo-bittrex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/toorop","download_url":"https://codeload.github.com/toorop/go-bittrex/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247234923,"owners_count":20905854,"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":[],"created_at":"2024-11-06T03:27:53.737Z","updated_at":"2025-04-04T19:12:08.742Z","avatar_url":"https://github.com/toorop.png","language":"Go","funding_links":[],"categories":["\u003ca name=\"Go\"\u003e\u003c/a\u003eGo"],"sub_categories":[],"readme":"go-bittrex [![GoDoc](https://godoc.org/github.com/toorop/go-bittrex?status.svg)](https://godoc.org/github.com/toorop/go-bittrex)\n==========\n\ngo-bittrex is an implementation of the Bittrex API (public and private) in Golang.\n\nThis version implement V1.1 Bittrex API and the new HMAC authentification.\n\n## Import\n\timport \"github.com/toorop/go-bittrex\"\n\t\n## Usage\n\nIn order to use the client with go's default http client settings you can do:\n\n~~~ go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"github.com/toorop/go-bittrex\"\n)\n\nconst (\n\tAPI_KEY    = \"YOUR_API_KEY\"\n\tAPI_SECRET = \"YOUR_API_SECRET\"\n)\n\nfunc main() {\n\t// Bittrex client\n\tbittrex := bittrex.New(API_KEY, API_SECRET)\n\n\t// Get markets\n\tmarkets, err := bittrex.GetMarkets()\n\tfmt.Println(err, markets)\n}\n~~~\n\nIn order to use custom settings for the http client do:\n\n~~~ go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"net/http\"\n\t\"time\"\n\t\"github.com/toorop/go-bittrex\"\n)\n\nconst (\n\tAPI_KEY    = \"YOUR_API_KEY\"\n\tAPI_SECRET = \"YOUR_API_SECRET\"\n)\n\nfunc main() {\n\thttpClient := \u0026http.Client{\n\t\tTimeout: time.Second * 10,\n\t}\n\n\t// Bittrex client\n\tbittrex := bittrex.NewWithCustomHttpClient(API_KEY, API_SECRET, httpClient)\n\n\t// Get markets\n\tmarkets, err := bittrex.GetMarkets()\n\tfmt.Println(err, markets)\n}\n~~~\n\nSee [\"Examples\" folder for more... examples](https://github.com/toorop/go-bittrex/blob/master/examples/bittrex.go)\n\n## Documentation\n[![GoDoc](https://godoc.org/github.com/toorop/go-bittrex?status.png)](https://godoc.org/github.com/toorop/go-bittrex)\n\n\n## Stay tuned\n[Follow me on Twitter](https://twitter.com/poroot)\n\nDonate\n------\n\n**toorop** Original Maintainer  \n![Donation QR](http://api.qrserver.com/v1/create-qr-code/?size=200x200\u0026data=bitcoin:1HgpsmxV52eAjDcoNpVGpYEhGfgN7mM1JB%3Flabel%3Dtoorop)\n\n[1HgpsmxV52eAjDcoNpVGpYEhGfgN7mM1JB](http://tinyurl.com/mccsoez)\n\n**PrettyBoyHelios** REST API V3 Upgrade\n\n\u003ca href=\"https://www.bitcoinqrcodemaker.com\"\u003e\u003cimg src=\"https://www.bitcoinqrcodemaker.com/api/?style=bitcoin\u0026amp;address=3HygqTcCGq7uT8FL5UguvFkeqV2CSto3eE\" height=\"300\" width=\"300\" border=\"0\" /\u003e\u003c/a\u003e\n\nBTC: 3HygqTcCGq7uT8FL5UguvFkeqV2CSto3eE ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoorop%2Fgo-bittrex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftoorop%2Fgo-bittrex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoorop%2Fgo-bittrex/lists"}