Ir al contenido
GET /v1/items

Items by category & starting letter

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/rs3-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/rs3-api/v1/items" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rs3-api/v1/items", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rs3-api/v1/items");
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/items",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "page": 1,
        "alpha": "a",
        "count": 11,
        "items": [
            {
                "id": 52938,
                "icon": "https://secure.runescape.com/m=itemdb_rs/1780309940895_obj_sprite.gif?id=52938",
                "name": "Abyssal armour spikes",
                "type": "Melee weapons - high level",
                "members": true,
                "icon_large": "https://secure.runescape.com/m=itemdb_rs/1780309940895_obj_big.gif?id=52938",
                "description": "When carried in the backpack or ammo slot and wearing melee equipment, these spikes deal damage to enemies who attack you from adjacent tiles.",
                "today_trend": "neutral",
                "today_change": 0,
                "current_price": 240,
                "current_trend": "neutral"
            },
            {
                "id": 52939,
                "icon": "https://secure.runescape.com/m=itemdb_rs/1780309940895_obj_sprite.gif?id=52939",
                "name": "Abyssal armour spikes (alloy)",
                "type": "Melee weapons - high level",
                "members": true,
                "icon_large": "https://secure.runescape.com/m=itemdb_rs/1780309940895_obj_big.gif?id=52939",
                "description": "When carried in the backpack or ammo slot and wearing melee equipment, these spikes deal damage to enemies who attack you from adjacent tiles or using a melee attack.",
                "today_trend": "neutral",
                "today_change": 0,
                "current_price": 296,
                "current_trend": "neutral"
            },
            {
                "id": 45321,
                "icon": "https://secure.runescape.com/m=itemdb_rs/1780309940895_obj_sprite.gif?id=45321",
                "name": "Abyssal bane 2h sword",
                "type": "Melee weapons - high level",
                "members": true,
                "icon_large": "https://secure.runescape.com/m=itemdb_rs/1780309940895_obj_big.gif?id=45321",
                "description": "Banite tuned against abyssals, so an abyssalite two handed sword?",
                "today_trend": "neutral",
                "today_change": 0,
                "current_price": 1200000,
                "current_trend": "neutral"
            },
            {
                "id": 45328,
                "icon": "https://secure.runescape.com/m=itemdb_rs/1780309940895_obj_sprite.gif?id=45328",
                "name": "Abyssal bane longsword",
                "type": "Melee weapons - high level",
                "members": true,
                "icon_large": "https://secure.runescape.com/m=itemdb_rs/1780309940895_obj_big.gif?id=45328",
                "description": "Banite tuned against abyssals, so an abyssalite longsword?",
                "today_trend": "neutral",
                "today_change": 0,
                "current_price": 801300,
                "current_trend": "neutral"
            },
            {
                "id": 45335,
     
…