/v1/items
Items by category & starting letter
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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,
…