/v1/champions
All champions (filter by class)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/lol-api/v1/champions" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lol-api/v1/champions", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lol-api/v1/champions");
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/champions",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 74,
"version": "16.11.1",
"champions": [
{
"id": "Ahri",
"key": "103",
"info": {
"magic": 8,
"attack": 3,
"defense": 4
},
"name": "Ahri",
"tags": [
"Mage",
"Assassin"
],
"blurb": "Innately connected to the magic of the spirit realm, Ahri is a fox-like vastaya who can manipulate her prey's emotions and consume their essence—receiving flashes of their memory and insight from each soul she consumes. Once a powerful yet wayward...",
"title": "the Nine-Tailed Fox",
"partype": "Mana",
"difficulty": 5
},
{
"id": "Anivia",
"key": "34",
"info": {
"magic": 10,
"attack": 1,
"defense": 4
},
"name": "Anivia",
"tags": [
"Mage"
],
"blurb": "Anivia is a benevolent winged spirit who endures endless cycles of life, death, and rebirth to protect the Freljord. A demigod born of unforgiving ice and bitter winds, she wields those elemental powers to thwart any who dare disturb her homeland...",
"title": "the Cryophoenix",
"partype": "Mana",
"difficulty": 10
},
{
"id": "Annie",
"key": "1",
"info": {
"magic": 10,
"attack": 2,
"defense": 3
},
"name": "Annie",
"tags": [
"Mage",
"Support"
],
"blurb": "Dangerous, yet disarmingly precocious, Annie is a child mage with immense pyromantic power. Even in the shadows of the mountains north of Noxus, she is a magical outlier. Her natural affinity for fire manifested early in life through unpredictable...",
"title": "the Dark Child",
"partype": "Mana",
"difficulty": 6
},
{
"id": "AurelionSol",
"key": "136",
"info": {
"magic": 8,
"attack": 2,
"defense": 3
},
"name": "Aurelion Sol",
"tags": [
"Mage"
],
"blurb": "Aurelion Sol once graced the vast emptiness of the cosmos with celestial wonders of his own devising. Now, he is forced to wield his awesome power at the behest of a space-faring empire that tricked him into servitude. Desiring a return to his...",
"title": "The Star Forger",
…