Zum Inhalt springen
GET /v1/item

Item detail & current price

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/rs3-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/rs3-api/v1/item" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rs3-api/v1/item", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rs3-api/v1/item");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/rs3-api/v1/item",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "item": {
            "id": 4151,
            "icon": "https://secure.runescape.com/m=itemdb_rs/1780309940895_obj_sprite.gif?id=4151",
            "name": "Abyssal whip",
            "type": "Melee weapons - high level",
            "day30": {
                "trend": "negative",
                "change": "-1.0%"
            },
            "day90": {
                "trend": "positive",
                "change": "+10.0%"
            },
            "day180": {
                "trend": "positive",
                "change": "+8.0%"
            },
            "members": true,
            "icon_large": "https://secure.runescape.com/m=itemdb_rs/1780309940895_obj_big.gif?id=4151",
            "description": "A weapon from the Abyss.",
            "today_trend": "neutral",
            "today_change": 0,
            "current_price": 85100,
            "current_trend": "neutral"
        }
    },
    "meta": {
        "timestamp": "2026-06-08T01:18:27.787Z",
        "request_id": "b2fc4972-14f9-4543-aceb-b4d9ea38fd28"
    },
    "status": "ok",
    "message": "Item retrieved successfully",
    "success": true
}