{"id":17146888,"url":"https://github.com/ssut/cryptoticker","last_synced_at":"2025-04-13T11:32:46.719Z","repository":{"id":57563439,"uuid":"104561512","full_name":"ssut/cryptoticker","owner":"ssut","description":"Cryptocurrency Price Ticker API in Go","archived":false,"fork":false,"pushed_at":"2017-10-01T13:49:01.000Z","size":24,"stargazers_count":12,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-05T00:47:39.255Z","etag":null,"topics":["cryptocurrency","ticker"],"latest_commit_sha":null,"homepage":null,"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/ssut.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":"2017-09-23T11:06:30.000Z","updated_at":"2024-04-16T15:50:43.000Z","dependencies_parsed_at":"2022-08-31T05:11:58.562Z","dependency_job_id":null,"html_url":"https://github.com/ssut/cryptoticker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssut%2Fcryptoticker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssut%2Fcryptoticker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssut%2Fcryptoticker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssut%2Fcryptoticker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ssut","download_url":"https://codeload.github.com/ssut/cryptoticker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248705957,"owners_count":21148620,"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":["cryptocurrency","ticker"],"created_at":"2024-10-14T21:09:49.168Z","updated_at":"2025-04-13T11:32:46.678Z","avatar_url":"https://github.com/ssut.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CryptoTicker\n\n[![Build Status](https://travis-ci.org/ssut/cryptoticker.svg?branch=master)](https://travis-ci.org/ssut/cryptoticker)\n[![Coverage Status](https://coveralls.io/repos/github/ssut/cryptoticker/badge.svg?branch=master)](https://coveralls.io/github/ssut/cryptoticker?branch=master)\n[![Go Report Card](https://goreportcard.com/badge/github.com/ssut/cryptoticker)](https://goreportcard.com/report/github.com/ssut/cryptoticker)\n[![GoDoc](https://godoc.org/github.com/ssut/cryptoticker?status.svg)](https://godoc.org/github.com/ssut/cryptoticker)\n\n\nIn short: **All-in-one cryptocurrency ticker pack**\n\nCrypto-currency market ticker API provider around the biggest *worldwide* markets.\n\n- [x] Bittrex (`BittrexTicker`)\n- [x] Poloniex (`PoloniexTicker`)\n- [x] Bitfinex (`Bitfinex`)\n- [ ] GDAX\n- [ ] Kraken\n- [x] Coinone (`Coinone`)\n- [x] Bithumb (`Bithumb`)\n- [ ] bitFlyer\n\n... Request for more markets are welcome!\n\n## Quick Start\n\n```go\ngo get -u github.com/ssut/cryptoticker\n```\n\n**example.go**\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"github.com/ssut/cryptoticker\"\n)\n\nfunc main() {\n\tparser := cryptoticker.NewParser(cryptoticker.PoloniexTicker)\n\tparsed, err := parser.Parse()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tcoins, err := parsed.Coins()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tfor _, coin := range coins {\n\t\t// coin.Base, coin.Next\n\t\tfmt.Println(coin.String())\n\t}\n\n\ttickers, err := parsed.Tickers()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tfor _, ticker := range tickers {\n\t\t// ticker.Currency (the same object as parsed.Coins())\n\t\t// ticker.Volume, ticker.Last, ticker.High, ticker.Low, ticker.First\n\t}\n}\n```\n\n## Documentation\n\nNote that this library is unfinished. Because of that there may be major changes to library in the future.\n\nSee the document at:\n\n* [![GoDoc](https://godoc.org/github.com/ssut/cryptoticker?status.svg)](https://godoc.org/github.com/ssut/cryptoticker)\n* Hand crafted documentation coming eventually.\n\n## License\n\nCryptoTicker is free software licensed under the MIT license. Details provided in the LICENSE file.\n\n## Buy me a coffee?\n\nIf you feel like buying me a coffee, donations are welcome to:\n\n```\nBTC: 1PkTzRLgcggpfrj4UDqM1PksPYirJs8WqY\nETH: 0x159D5BDCD4971E8CF8F51C5FA01E8B1A8CD25FE1\nXMR: 43JCpUNQuH9STRr6nuBWWXULC8qRFRwWhiMd98yJLinVWDiqKZPenszX3B76GD7fv5dBN5uXY78CLP3pknQh9HhyR7ohVCU\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssut%2Fcryptoticker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fssut%2Fcryptoticker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssut%2Fcryptoticker/lists"}