{"id":22096416,"url":"https://github.com/hwvs/osrshiscoresharp","last_synced_at":"2026-05-02T13:35:34.274Z","repository":{"id":166664566,"uuid":"365359756","full_name":"hwvs/OSRSHiscoreSharp","owner":"hwvs","description":"Easy-to-use Async C#/.NET Library to lookup OSRS player hiscores (Old-School Runescape) using the undocumented Jagex API, and a WPF (Windows Presentation Framework) GUI to demonstrate.","archived":false,"fork":false,"pushed_at":"2023-05-18T01:31:07.000Z","size":157,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T00:57:23.296Z","etag":null,"topics":["async","csharp","dotnet","osrs","osrs-api","osrs-hiscores","runelite","runescape"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hwvs.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":"2021-05-07T21:45:08.000Z","updated_at":"2023-06-12T21:25:03.000Z","dependencies_parsed_at":"2023-07-27T23:16:57.750Z","dependency_job_id":null,"html_url":"https://github.com/hwvs/OSRSHiscoreSharp","commit_stats":null,"previous_names":["hwvs/osrshiscoresharp"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/hwvs/OSRSHiscoreSharp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hwvs%2FOSRSHiscoreSharp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hwvs%2FOSRSHiscoreSharp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hwvs%2FOSRSHiscoreSharp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hwvs%2FOSRSHiscoreSharp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hwvs","download_url":"https://codeload.github.com/hwvs/OSRSHiscoreSharp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hwvs%2FOSRSHiscoreSharp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32536579,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T12:25:33.646Z","status":"ssl_error","status_checked_at":"2026-05-02T12:24:51.733Z","response_time":132,"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":["async","csharp","dotnet","osrs","osrs-api","osrs-hiscores","runelite","runescape"],"created_at":"2024-12-01T04:10:47.095Z","updated_at":"2026-05-02T13:35:34.256Z","avatar_url":"https://github.com/hwvs.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OSRSHiscoreSharp - C# OSRS Hiscore Library (+WPF Demo)\n[![.NET](https://github.com/hwvs/OSRSHiscoreSharp/actions/workflows/dotnet.yml/badge.svg)](https://github.com/hwvs/OSRSHiscoreSharp/actions/workflows/dotnet.yml)\n\nEasy-to-use async C# package to lookup OSRS player hiscores. If you use this in your project, please ⭐star this repo and include a link in your credits ❤️\n\n\nUsage:\n```csharp\n// (Inside try-catch block)\n{\n  // Lookup the player on the hiscores\n  var player = await HiscoreLookup.LookupPlayerStats(\"dedwilson\", HiscoreGamemode.NORMAL);\n  // Grab the total level of the player\n  var totalLevel = player.Records.Skills[\"overall\"].Value;\n}\n```\n\nCheck `OSRSHiscoreSharp.Data.HiscoreConstants` for record index values\n\n```csharp\n\n        public static readonly string[] SKILL_NAMES = new string[] {\n            \"overall\",\n            \"attack\",\n            \"defence\",\n            \"strength\",\n            \"hitpoints\",\n            \"ranged\",\n            \"prayer\",\n            \"magic\",\n            \"cooking\",\n            \"woodcutting\",\n            \"fletching\",\n            \"fishing\",\n            \"firemaking\",\n            \"crafting\",\n            \"smithing\",\n            \"mining\",\n            \"herblore\",\n            \"agility\",\n            \"thieving\",\n            \"slayer\",\n            \"farming\",\n            \"runecrafting\",\n            \"hunter\",\n            \"construction\",\n        };\n\n        public static readonly string[] LEAGUE_NAMES = new string[] {\n            \"leaguePoints\"\n        };\n\n        public static readonly string[] BOUNTY_HUNTER_NAMES = new string[] {\n            \"bhHunter\",\n            \"bhRogue\",\n        };\n\n        public static readonly string[] MINIGAME_NAMES = new string[] {\n            \"lms\",\n            \"soulwars\",\n        };\n\n        public static readonly string[] CLUE_NAMES = new string[] {\n            \"clueAll\",\n            \"clueBeginner\",\n            \"clueEasy\",\n            \"clueMedium\",\n            \"clueHard\",\n            \"clueElite\",\n            \"clueMaster\"\n        };\n\n        public static readonly string[] BOSS_NAMES = new string[] {\n            \"abyssalSire\",\n            \"alchemicalHydra\",\n            \"barrows\",\n            \"bryophyta\",\n            \"callisto\",\n            \"cerberus\",\n            \"chambersOfXeric\",\n            \"chambersOfXericChallengeMode\",\n            \"chaosElemental\",\n            \"chaosFanatic\",\n            \"commanderZilyana\",\n            \"corporealBeast\",\n            \"crazyArchaeologist\",\n            \"dagannothPrime\",\n            \"dagannothRex\",\n            \"dagannothSupreme\",\n            \"derangedArchaeologist\",\n            \"generalGraardor\",\n            \"giantMole\",\n            \"grotesqueGuardians\",\n            \"hespori\",\n            \"kalphiteQueen\",\n            \"kingBlackDragon\",\n            \"kraken\",\n            \"kreeArra\",\n            \"krilTsutsaroth\",\n            \"mimic\",\n            \"nightmare\",\n            \"obor\",\n            \"sarachnis\",\n            \"scorpia\",\n            \"skotizo\",\n            \"tempoross\",\n            \"gauntlet\",\n            \"corruptedGauntlet\",\n            \"theatreOfBlood\",\n            \"thermonuclearSmokeDevil\",\n            \"tzKalZuk\",\n            \"tzTokJad\",\n            \"venenatis\",\n            \"vetion\",\n            \"vorkath\",\n            \"wintertodt\",\n            \"zalcano\",\n            \"zulrah\",\n        };\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhwvs%2Fosrshiscoresharp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhwvs%2Fosrshiscoresharp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhwvs%2Fosrshiscoresharp/lists"}