Welcome to
DropTracker.io
An all-in-one loot and achievement tracking solution for Old School RuneScape players and groups — featuring real-time notifications, leaderboards and events.
Get started in minutes
Install the plugin
Grab DropTracker from the RuneLite Plugin Hub — drops start tracking immediately, no signup needed.
Plugin guide →Link your account
Sign in with Discord and claim your RuneScape accounts to unlock profiles, badges and notifications.
Linking guide →Bring your clan
Create a group to get shared lootboards, leaderboards, Discord announcements and events.
Group setup →Top players
View all →| # | Name | Loot |
|---|---|---|
| 1 | Last Paul | 3.35B |
| 2 | N e mo×3×2 | 3.27B |
| 3 | Gilles meow×3×2 | 2.86B |
| 4 | Redquaker | 2.80B |
| 5 | BLOEDLINK | 2.69B |
| 6 | vgtrs | 1.79B |
| 8 | slatesco | 1.65B |
| 9 | KapiteinBart | 1.64B |
| 10 | GM LloydKirk | 1.52B |
Top clans
View all →| # | Name | Loot |
|---|---|---|
| 1 | Galvanized | 10.68B |
| 2 | Frontier | 8.80B |
| 3 | Live on | 5.20B |
| 4 | Pegasus PvM | 5.01B |
| 5 | Scapeland | 4.72B |
Supporting DropTracker
Become a supporter →A huge thank you to the clans and players whose subscriptions keep DropTracker running.
Supporter clans
Supporters
Documentation
Browse all →Contributing
Latest news
- New group-based API access made available to grab leaderboards and drop data
You can now directly query our API for data for your group, with custom time windows and the option to filter by NPCs. ## Authentication Use the API key from your group dashboard (group settings → export API key). Pass it any of these ways: - `Authorization: Bearer <key>` header - `X-API-Key: <key>` header - `?api_key=<key>` query param The key only works for **your** group's data. Base URL: `https://api.droptracker.io` ## 1. Top players — ranked loot leaderboard ``` GET /groups/<your-group-id>/export/top-players ``` - `npc_id` or `npc_name` — optional filter (e.g. `npc_name=Zulrah`; name matches all boss variants; omit for all loot) - `start_time` / `end_time` — window to rank over; ISO-8601 (`2026-07-01T00:00:00Z`) or unix timestamp, UTC. Defaults to the last 30 days, max window 1 year - `limit` — players returned (default 25, max 100) - `items_per_player` — top items shown per player (default 10, max 25) Returns each member ranked by GP gained in the window, with drop counts, first/last drop times, and a per-player breakdown of their most valuable items — plus group-wide totals. ## 2. Raw drops — every tracked drop ``` GET /groups/<your-group-id>/export/drops ``` Same time/NPC params, plus `player_id`, `min_value` (GP), and `limit`/`offset` pagination. Newest first; includes item names, quantities, values, timestamps, and screenshot URLs where available. ## 3. Members — current roster ``` GET /groups/<your-group-id>/export/members ``` Player names, WOM IDs, total levels, and when we started tracking them. ## Example — top Zulrah looters this week ```bash curl -H "Authorization: Bearer YOUR_KEY" \ "https://api.droptracker.io/groups/YOUR_ID/export/top-players?npc_name=Zulrah&start_time=2026-07-11T00:00:00Z" ``` Rate limit is 30 requests/min per endpoint.
- DropTracker v5.4.0 — Early July Update
We've spent the past week rebuilding large parts of DropTracker from the ground up. The website is brand new, the events system is fully live, and there's a new way to support us as an individual. Here's everything that changed. ## 🌐 A Brand-New Website We **completely rewrote droptracker.io** on a modern stack (Next.js). It's faster, cleaner, and mobile-friendly, and every page below is live now: - **New landing page** — hero search bar with instant player/group typeahead, a live collage of recent global drops, and getting-started steps. - **Player & group profiles** — now with real stat blocks, richer detail, and smoother navigation. - **Leaderboards** — full player names, faster loads. - **Docs** — reader-first documentation, rewritten to match what actually ships. - **Account settings** — reworked around the fields that matter, with real privacy controls that are now enforced server-side (your hidden data stays hidden). - **Group admin** — a proper config editor, announcement composer with Discord ping picker, an "Authorized users" tab, and per-group diagnostics. ## 🏆 Events (v2) — Fully Live Our events system has been rebuilt end-to-end and now works properly, start to finish: - **Create events** with typed tasks: item collection, kill-count goals, personal-best targets, **XP/skill goals**, loot value, and custom tasks. - **Bingo boards** — a visual designer plus a live, public board, with automatic line & blackout bonuses. - **Teams** — multiple formation modes (self-join with a code, auto-assign, or admin-assign). - **Automatic scoring** — completions are credited straight from your submissions in real time, with a verification queue for tasks that need manual confirmation. - **Per-event Discord integration** — route announcements, completions, and leaderboards to the channels you choose. - **Full lifecycle control** — draft, activate, and end events on your schedule. ## 💜 New: Personal Supporter Subscription You no longer need to run a whole group to unlock premium perks. **Supporter is a personal, pay-what-you-want subscription** (minimum $5/mo — pay more if you'd like to help us out): - **Personal video capture** — record clips of your own submissions regardless of your group's plan. - **Submission DMs** — get your drops, level-ups, and more sent straight to your Discord DMs. - **Supporter flair** and other perks. 💛 **Thank-you:** active **Bug Tester** badge holders are automatically granted supporter benefits. ## 🔌 Plugin Improvements - **Death & Achievement Diary tracking** added. - **Update prompts** — the plugin now tells you when a new version is available. - **Split & team-loot fixes** — more accurate value splits and better Chambers of Xeric team detection. - Added **Maggot King** to special NPC loot handling. - Various stability and performance improvements under the hood. ## 🛠️ Behind the Scenes - More reliable notification delivery, with personal DMs no longer accidentally suppressed by group settings. - Announcements now send real Discord pings. - Custom group point systems and custom embed editing. - Faster, more accurate leaderboards and NPC totals. --- **Found a bug or have feedback?** Open a ticket on the site or drop a message here — this update touched a *lot*, and your reports genuinely help. Thanks for being part of DropTracker! 🎯
- New Website
You're currently browsing our new front-end, a work-in-progress. This site is built on Next.js