Μετάβαση στο περιεχόμενο
GET /v1/items

Items by category & starting letter

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/rs3-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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