Live feed — waiting for the next big drop…

New group-based API access made available to grab leaderboards and drop data

7/18/2026 · joel

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

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.

New group-based API access made available to grab leaderboards and drop data · DropTracker