{"id":18109588,"url":"https://github.com/s32x/ovrstat","last_synced_at":"2025-12-15T04:14:29.892Z","repository":{"id":43210084,"uuid":"63504193","full_name":"s32x/ovrstat","owner":"s32x","description":":video_game: An Unofficial Overwatch Stats API","archived":true,"fork":false,"pushed_at":"2022-10-01T22:59:05.000Z","size":11821,"stargazers_count":100,"open_issues_count":5,"forks_count":18,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-12-12T03:42:10.399Z","etag":null,"topics":["api","blizzard","container","docker","golang","overwatch","overwatch-api","stats"],"latest_commit_sha":null,"homepage":"https://ovrstat.com","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/s32x.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":"2016-07-16T22:11:34.000Z","updated_at":"2024-11-17T07:01:18.000Z","dependencies_parsed_at":"2022-08-12T10:21:17.369Z","dependency_job_id":null,"html_url":"https://github.com/s32x/ovrstat","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/s32x%2Fovrstat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s32x%2Fovrstat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s32x%2Fovrstat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/s32x%2Fovrstat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/s32x","download_url":"https://codeload.github.com/s32x/ovrstat/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246213474,"owners_count":20741732,"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":["api","blizzard","container","docker","golang","overwatch","overwatch-api","stats"],"created_at":"2024-11-01T00:01:52.158Z","updated_at":"2025-12-15T04:14:29.843Z","avatar_url":"https://github.com/s32x.png","language":"Go","funding_links":[],"categories":["Community"],"sub_categories":["Github"],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg src=\"service/static/assets/logo.png\" width=\"310\" height=\"71\" border=\"0\" alt=\"ovrstat\"\u003e\n\u003cbr\u003e\n\u003ca href=\"https://goreportcard.com/report/github.com/s32x/ovrstat\"\u003e\u003cimg src=\"https://goreportcard.com/badge/github.com/s32x/ovrstat\" alt=\"Go Report Card\"\u003e\u003c/a\u003e\n\u003ca href=\"https://godoc.org/github.com/s32x/ovrstat/ovrstat\"\u003e\u003cimg src=\"https://godoc.org/github.com/s32x/ovrstat/ovrstat?status.svg\" alt=\"GoDoc\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n# The Public Ovrstat API was shutdown on October 1st 2022 and this project has been archived. Please check out [ow-api](https://ow-api.com/docs/) as a possible alternative.\n\n`ovrstat` is a simple web scraper for the Overwatch stats site that parses and serves the data retrieved as JSON. Included is the go package used to scrape the info for usage in any go binary. This is a single endpoint web-scraping API that takes the full payload of information that we retrieve from Blizzard and passes it through to you in a single response. Things like caching and splitting data across multiple responses could likely improve performance, but in pursuit of keeping things simple, ovrstat does not implement them.\n\n## Getting Started\n### Installing Locally with Go\nTo start using ovrstat on your local system, install Go and run `go get`:\n```\n$ go get github.com/s32x/ovrstat\n```\nThis will install the ovrstat service on your machine. Running the following will then launch the service.\n```\n$ ovrstat\n```\n### Local API Usage\n\nBelow is an example of using the REST endpoint (note: CASE matters for the username/tag):\n```\nhttp://localhost:8080/stats/pc/Viz-1213\nhttp://localhost:8080/stats/xbl/Lt%20Evolution\nhttp://localhost:8080/stats/psn/TayuyaBreast\nhttp://localhost:8080/stats/nintendo-switch/Mario-70af1a16ae4913bde139d46edb43df55\n```\n### Using Go to retrieve Stats\n\n```go\npackage main\n\nimport (\n\t\"log\"\n\n\t\"github.com/s32x/ovrstat/ovrstat\"\n)\n\nfunc main() {\n\tlog.Println(ovrstat.PCStats(\"Viz-1213\"))\n\tlog.Println(ovrstat.ConsoleStats(ovrstat.PlatformXBL, \"Lt%20Evolution\"))\n\tlog.Println(ovrstat.ConsoleStats(ovrstat.PlatformPSN, \"TayuyaBreast\"))\n\tlog.Println(ovrstat.ConsoleStats(ovrstat.PlatformNS, \"Mario-70af1a16ae4913bde139d46edb43df55\"))\n}\n```\n\n## Disclaimer\novrstat isn’t endorsed by Blizzard and doesn’t reflect the views or opinions of Blizzard or anyone officially involved in producing or managing Overwatch. Overwatch and Blizzard are trademarks or registered trademarks of Blizzard Entertainment, Inc. Overwatch © Blizzard Entertainment, Inc.\n\nThe BSD 3-clause License\n========================\n\nCopyright (c) 2022, s32x. All rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification,\nare permitted provided that the following conditions are met:\n\n - Redistributions of source code must retain the above copyright notice,\n   this list of conditions and the following disclaimer.\n\n - Redistributions in binary form must reproduce the above copyright notice,\n   this list of conditions and the following disclaimer in the documentation\n   and/or other materials provided with the distribution.\n\n - Neither the name of ovrstat nor the names of its contributors may\n   be used to endorse or promote products derived from this software without\n   specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs32x%2Fovrstat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fs32x%2Fovrstat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fs32x%2Fovrstat/lists"}