RuneScape
Official RuneScape Grand Exchange item prices and trends
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.
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"
}
}
}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
/catalogue/detail.json?item=4151PROBEDOfficial RuneScape Grand Exchange item prices and trends
/catalogueCatalogue — documented GET route.
/catalogue/1Catalogue details by ID (example: 1).
/catalogue?limit=10Catalogue — documented GET route.
/catalogue/search?q=testSearch by query parameters.
/catalogue/detail.json?limit=5Detail Json — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
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.