Stupid.RS3.API 1.1.0

dotnet add package Stupid.RS3.API --version 1.1.0
                    
NuGet\Install-Package Stupid.RS3.API -Version 1.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Stupid.RS3.API" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Stupid.RS3.API" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Stupid.RS3.API" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Stupid.RS3.API --version 1.1.0
                    
#r "nuget: Stupid.RS3.API, 1.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Stupid.RS3.API@1.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Stupid.RS3.API&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Stupid.RS3.API&version=1.1.0
                    
Install as a Cake Tool

Stupid.RS3.API Usage Guide

Build and Unit tests

Introduction

The Stupid.RS3.API C# package provides a simple and lightweight API wrapper for interacting with the RuneScape 3 (RS3) API.

Installation

Install-Package Stupid.RS3.API

Methods

Hiscores

GetPlayerStatsByName(string name)

Returns a player's rank, level, and experience across all 30 skills from the RS3 Hiscores.

GetPlayerIronmanStats(string name)

Returns a player's stats from the Ironman Hiscores.

GetPlayerHardcoreIronmanStats(string name)

Returns a player's stats from the Hardcore Ironman Hiscores.

GetHiscoreRanking(int table, int size = 50)

Returns up to the top 50 players for a given skill or activity table (0 = Overall, 1 = Attack, …).

Seasonal Hiscores

GetSeasonalRankings(string player, bool archived = false)

Returns a player's scores for the current or archived seasonal event.

GetSeasonalHiscoreDetails(bool archived = false)

Returns metadata (title, dates, status) for the current or archived seasonal event.

Clan Hiscores

GetClanRanking()

Returns the top three clans by total experience.

GetClanMembers(string clanName)

Returns all members of a clan with their rank, total XP, and kills.

Grand Exchange

GetGrandExchangeInfo()

Returns the last update timestamp of the Grand Exchange database.

GetGrandExchangeCategory(int categoryId)

Returns item counts organised by first letter for a GE category (IDs 0–43).

GetGrandExchangeItems(int categoryId, string alpha, int page = 1)

Returns a paginated list of tradeable items within a category (up to 12 per page).

GetGrandExchangeDetail(int itemId)

Returns the current price, trend, and 30/90/180-day change data for an item.

GetGrandExchangeGraph(int itemId)

Returns daily prices and 30-day moving average for the past 180 days.

RuneMetrics

GetRunemetricsProfile(string name, int activities = 20)

Returns a player's full RuneMetrics profile — skills, total XP, combat level, quest counts, and recent activity log.

GetPlayerQuests(string name, Difficulty? filterDifficulty = null, QuestStatus? filterStatus = null)

Returns a player's quest completion statuses with optional filters.

GetMonthlyXp(string name, Skills? skill = null)

Returns monthly XP gains for the past 12 months, optionally filtered to a single skill.

Website Data

GetPlayerDetails(string[] names)

Returns title, clan affiliation, and recruitment status for one or more players.

Other

GetOnlinePlayerCount()

Returns the combined online player count for RuneScape and OSRS. Returns 0 on failure.

GetTotalRegisteredUsers()

Returns the total number of accounts registered across all RuneScape platforms.

Usage Examples

Retrieve player quests

var client = new Client();
var quests = await client.GetPlayerQuests("PlayerName");
foreach (var quest in quests)
    Console.WriteLine($"{quest.Title}: {quest.Status}");

// Filter by difficulty and status
var completed = await client.GetPlayerQuests("PlayerName", Difficulty.Experienced, QuestStatus.COMPLETED);

Look up a Grand Exchange item

var client = new Client();
var detail = await client.GetGrandExchangeDetail(4151); // Abyssal whip
Console.WriteLine($"{detail.Name}: {detail.Current.Price}");

var graph = await client.GetGrandExchangeGraph(4151);
foreach (var entry in graph.Daily)
    Console.WriteLine($"{entry.Key}: {entry.Value}gp");

Get a player's RuneMetrics profile

var client = new Client();
var profile = await client.GetRunemetricsProfile("PlayerName");
Console.WriteLine($"Combat level: {profile.CombatLevel}, Total XP: {profile.TotalXp}");

Get clan members

var client = new Client();
var members = await client.GetClanMembers("My Clan");
foreach (var member in members)
    Console.WriteLine($"{member.Name} ({member.Rank}): {member.TotalXp:N0} XP");

Release Notes

Version 1.1.0

  • Added Grand Exchange methods: GetGrandExchangeInfo, GetGrandExchangeCategory, GetGrandExchangeItems, GetGrandExchangeDetail, GetGrandExchangeGraph
  • Added GetRunemetricsProfile for full RuneMetrics profile data
  • Added GetHiscoreRanking for top players by skill or activity
  • Added GetPlayerIronmanStats and GetPlayerHardcoreIronmanStats
  • Added clan hiscore methods: GetClanRanking, GetClanMembers
  • Added GetPlayerDetails for player title and clan information
  • Added GetSeasonalRankings and GetSeasonalHiscoreDetails for seasonal events
  • Added GetTotalRegisteredUsers for total registered account count

Version 1.0.3

  • Added GetMonthlyXp for querying monthly XP data

Version 1.0.2

  • Added GetOnlinePlayerCount to retrieve online player count (OSRS/RS3)

Version 1.0.1

  • Added GetPlayerQuests with optional filtering by difficulty and status

Version 1.0.0

  • Initial release with GetPlayerStatsByName for retrieving player hiscore statistics
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0 92 5/7/2026
1.0.3 269 8/30/2025
1.0.2 300 10/24/2023
1.0.1 228 10/17/2023
1.0.0 201 10/10/2023

Grand Exchange, RuneMetrics Profile, Hiscore Ranking, Ironman Hiscores, Clan Hiscores, Player Details, Seasonal Hiscores, Total Registered Users