/v1/runes
Rune trees
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/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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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."
},
…