/v1/item
Item detail & current price
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}