Vai al contenuto
GET /v1/runes

Rune trees

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "count": 5,
        "paths": [
            {
                "id": 8100,
                "key": "Domination",
                "name": "Domination",
                "slots": [
                    [
                        {
                            "id": 8112,
                            "key": "Electrocute",
                            "name": "Electrocute",
                            "short": "Hitting a champion with 3 separate attacks or abilities in 3s deals bonus adaptive damage."
                        },
                        {
                            "id": 8128,
                            "key": "DarkHarvest",
                            "name": "Dark Harvest",
                            "short": "Damaging a low health champion inflicts adaptive damage and harvests a soul from the victim."
                        },
                        {
                            "id": 9923,
                            "key": "HailOfBlades",
                            "name": "Hail of Blades",
                            "short": "Gain a large amount of Attack Speed and bonus true damage for the first 3 attacks made against enemy champions."
                        }
                    ],
                    [
                        {
                            "id": 8126,
                            "key": "CheapShot",
                            "name": "Cheap Shot",
                            "short": "Deal bonus true damage to enemy champions with impaired movement or actions."
                        },
                        {
                            "id": 8139,
                            "key": "TasteOfBlood",
                            "name": "Taste of Blood",
                            "short": "Heal when you damage an enemy champion."
                        },
                        {
                            "id": 8143,
                            "key": "SuddenImpact",
                            "name": "Sudden Impact",
                            "short": "Damaging basic attacks and abilities deal bonus true damage to enemy champions after using a dash, leap, blink, teleport, or when leaving stealth."
                        }
                    ],
                    [
                        {
                            "id": 8137,
                            "key": "SixthSense",
                            "name": "Sixth Sense",
                            "short": "On a long Cooldown, automatically sense a nearby untracked and unseen ward, tracking it for the team. Level 11: Also reveal the ward for 10s."
                        },
                        {
                            "id": 8140,
                            "key": "GrislyMementos",
                            "name": "Grisly Mementos",
                            "short": "Collect 1 memento on champion takedowns, up to 18 total. Gain 6 Trinket Haste for each collected."
                        },
            
…