RuneScape

Official RuneScape Grand Exchange item prices and trends

🎮 GamesHEALTHYchecked 6h ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

Jagex's Grand Exchange catalogue endpoint returns an item's current price, 30/90/180-day trends, image, and category. It answers JSON (despite a text/html content type) with no key required. RuneScape data is © Jagex.

80HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: 80 · healthy
Uptime history
100%90 days
100%30 days
1525P50 · ms
3666P95 · ms
operationalpartialdownno data
Response time · last 48 checks
Fastest 341 ms, slowest 2826 ms, most recent 851 ms.
Live response samplecaptured by our last successful check
GET https://services.runescape.com/m=itemdb_rs/api/catalogue/detail.json?item=4151

{
  "item": {
    "id": 4151,
    "name": "Abyssal whip",
    "type": "Melee weapons - high level",
    "description": "A weapon from the Abyss.",
    "members": "true",
    "current": {
      "trend": "neutral",
      "price": "85.3k"
    }
  }
}
Call itcurl · fetch · python
curl "https://services.runescape.com/m=itemdb_rs/api/catalogue/detail.json?item=4151"
const res = await fetch("https://services.runescape.com/m=itemdb_rs/api/catalogue/detail.json?item=4151");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://services.runescape.com/m=itemdb_rs/api/catalogue/detail.json?item=4151")
print(res.json())

BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET

Endpoints · 6HealthyFULL DOCS ↗
Monitored path responding — GET /catalogue/detail.json?item=41511525 mschecked 6h ago
GET/catalogue/detail.json?item=4151PROBED

Official RuneScape Grand Exchange item prices and trends

GET/catalogue

Catalogue — documented GET route.

GET/catalogue/1

Catalogue details by ID (example: 1).

GET/catalogue?limit=10

Catalogue — documented GET route.

GET/catalogue/search?q=test

Search by query parameters.

GET/catalogue/detail.json?limit=5

Detail Json — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

RuneScape: common questions

Is RuneScape free to use?

Yes — RuneScape is a free games API. Free tier: Free, no API key. Whether the free tier allows commercial use is unclear — check the provider docs.

Does RuneScape need an API key?

No — RuneScape needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call RuneScape from the browser?

Not directly — RuneScape doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.

Is RuneScape up right now?

As of our last scheduled check, RuneScape is healthy with 100% uptime over 90 days and a 1525 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.