RuneScape

Official RuneScape Grand Exchange item prices and trends

🎮 GamesUNMONITOREDchecked 27 min 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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
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 · 6On scheduleFULL DOCS ↗
First rollup pending — GET /catalogue/detail.json?item=4151 has been probed
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 unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.