/v1/items
Search items
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/lol-api/v1/items" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lol-api/v1/items", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lol-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/lol-api/v1/items",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"item": {
"id": 3031,
"from": [
"1038",
"1037",
"1018"
],
"gold": {
"base": 725,
"sell": 2450,
"total": 3500
},
"into": [],
"name": "Infinity Edge",
"tags": [
"CriticalStrike",
"Damage"
],
"stats": {
"FlatCritChanceMod": 0.25,
"FlatPhysicalDamageMod": 75
},
"plaintext": "Massively enhances critical strikes",
"description": "75 Attack Damage 25% Critical Strike Chance 30% Critical Strike Damage"
},
"version": "16.11.1"
},
"meta": {
"timestamp": "2026-06-01T00:04:02.852Z",
"request_id": "1d49c514-1382-4a69-852f-606bc2d6d20b"
},
"status": "ok",
"message": "Items retrieved",
"success": true
}