Skip to content
GET /v1/item

Item detail & current price

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/rs3-api

It works. Grab an API key and use it in your project.

Get an API key

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}