Vai al contenuto
GET /v1/items

Items by category & starting letter

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/rs3-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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,
     
…