One champion in full
API · /lol-api
League of Legends API
League of Legends game data as an API, powered by Riot Data Dragon. Get every champion with their full kit — passive plus Q/W/E/R abilities (with cooldowns, costs and ranges), base stats, class tags, lore, ally/enemy tips and skin list — browse or filter champions by class (Mage, Fighter, Assassin, Tank, Support, Marksman), search the full item catalogue for gold cost, stat bonuses and build paths, list all summoner spells (Flash, Ignite, Teleport and more), and read the rune trees with every keystone and minor rune. The data always reflects the current live patch and is served from Riot\x27s static CDN, so it is fast and rock-solid under load. Perfect for champion and item guides, build tools, draft helpers, Discord bots, wikis and companion apps. No accounts, no upstream key. Not endorsed by Riot Games.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 98 ms
- Server probes · 24h
- Subscribers
- 4,000
- active
- Total calls
- 120
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 3,550 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 3,550 calls/month
- 2 req/sec
- Champions, items, spells & runes
- No credit card
Starter
€5.00 /month
- 45,500 calls / month
- 5 requests / second
- Hard cap (429 above quota, no overage)
- 45.5k calls/month
- 5 req/sec
- Full champion & item detail
- Email support
Pro
€15.00 /month
- 218,000 calls / month
- 15 requests / second
- Hard cap (429 above quota, no overage)
- 218k calls/month
- 15 req/sec
- Build tools & guides
- Priority support
Mega
€40.90 /month
- 1,090,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 1.09M calls/month
- 40 req/sec
- Bots, wikis & companion apps
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
VALORANT API
VALORANT game content as an API, powered by valorant-api.com. Get every playable agent with their role, abilities and lore, all maps with their callouts and coordinates, the full weapon roster with costs, fire rate, magazine size and head/body/leg damage (plus the list of skins per gun), the current competitive rank tiers from Iron to Radiant with their colours, and all playable game modes. Look up a single agent, map or weapon by name, or filter agents by role (Duelist, Initiator, Controller, Sentinel) and weapons by category. Game data is served from a static CDN, so it is fast and rock-solid under load. Perfect for VALORANT companion apps, agent and weapon guides, rank trackers, Discord bots, tier lists and fan sites. No accounts, no upstream key. Not affiliated with Riot Games.
api.oanor.com/valorant-api
WEMIX API
Live EVM on-chain data for WEMIX (chain id 1111) — the gaming-focused public Layer-1 built by Wemade, whose native token is WEMIX — served directly from public EVM JSON-RPC nodes with multi-node failover. The status endpoint returns the chain and network id, the latest block height and the node client version. The block endpoint returns a block by number (or the latest) with its hash, parent hash, timestamp, transaction count, gas used and gas limit, miner and size. The gas endpoint returns the current gas price in both wei and gwei. The balance endpoint returns the WEMIX balance and outgoing transaction count for any address, converted from base wei (18 decimals) into whole WEMIX with exact big-integer scaling. Every figure is read live from the chain over JSON-RPC — nothing bundled or modelled — behind a short server-side cache with keep-warm so the feed stays fast and fresh. Ideal for explorers, wallet and dashboard tooling, gas trackers, address monitors and game-economy analytics across the WEMIX ecosystem. Live keyless upstream. 5 endpoints.
api.oanor.com/wemix-api
Funki API
Live EVM on-chain data for Funki (chain id 33979) — an OP-Stack Layer-2 built for gaming and social applications, with gas paid in ETH — served directly from the public Funki JSON-RPC with server-side resilience. The status endpoint returns the chain and network id, the latest block height and the node client version. The block endpoint returns a block by number (or the latest) with its hash, parent hash, timestamp, transaction count, gas used and gas limit, miner and size. The gas endpoint returns the current gas price in both wei and gwei. The balance endpoint returns the ETH balance and outgoing transaction count for any address, converted from base wei (18 decimals) into whole ETH with exact big-integer scaling. Every figure is read live from the chain over JSON-RPC — nothing bundled or modelled — behind a short server-side cache with keep-warm so the feed stays fast and fresh. Ideal for explorers, wallet and dashboard tooling, gas trackers, address monitors and analytics apps across the Funki gaming and social ecosystem. Live keyless upstream. 5 endpoints.
api.oanor.com/funki-api
XPLA API
Live EVM on-chain data for XPLA (chain id 37) — the Cosmos-built gaming and entertainment Layer-1 from Com2uS, whose native token is XPLA, served through its Dimension EVM via public JSON-RPC nodes with multi-node failover. The status endpoint returns the chain and network id, the latest block height and the node client version. The block endpoint returns a block by number (or the latest) with its hash, parent hash, timestamp, transaction count, gas used and gas limit, miner and size. The gas endpoint returns the current gas price in both wei and gwei. The balance endpoint returns the XPLA balance and outgoing transaction count for any EVM address, converted from base wei (18 decimals) into whole XPLA with exact big-integer scaling. Every figure is read live from the chain over JSON-RPC — nothing bundled or modelled — behind a short server-side cache with keep-warm so the feed stays fast and fresh. Ideal for explorers, wallet and dashboard tooling, gas trackers, address monitors and analytics apps across the XPLA gaming and NFT ecosystem. Live keyless upstream. 5 endpoints.
api.oanor.com/xpla-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for League of Legends API?
What's the rate limit for League of Legends API?
How much does League of Legends API cost?
Can I cancel my subscription anytime?
Is League of Legends API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/lol-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/lol-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/lol-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/lol-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.