Java/Bedrock server status
API · /minecraft-api
Minecraft API
Live Minecraft data as an API. Query any Java or Bedrock server by address and get its live status — whether it is online, the current and maximum player count, the server version and protocol, the MOTD, the favicon, software and (when public) the player sample. Look up any player by name or UUID for their full profile: dashed and trimmed UUID, current skin and cape texture URLs, skin model (classic or slim), name history and account-creation date, plus ready-made avatar, head and body render URLs. Resolve usernames to UUIDs and back, fetch skin and render links on their own, and list every Minecraft version (releases and snapshots) with release dates. Perfect for server-list sites and status dashboards, player-stat and skin-viewer tools, Discord bots, launchers and fan sites. No accounts, no upstream key. Powered by mcsrvstat.us and Mojang.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 279 ms
- Server probes · 24h
- Subscribers
- 4,712
- active
- Total calls
- 114
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 3,600 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 3,600 calls/month
- 2 req/sec
- Server status, player & versions
- No credit card
Starter
€4.50 /month
- 45,500 calls / month
- 5 requests / second
- Hard cap (429 above quota, no overage)
- 45.5k calls/month
- 5 req/sec
- Skins, UUIDs & name history
- Email support
Pro
€14.20 /month
- 220,000 calls / month
- 15 requests / second
- Hard cap (429 above quota, no overage)
- 220k calls/month
- 15 req/sec
- Server lists & dashboards
- Priority support
Mega
€39.40 /month
- 1,095,000 calls / month
- 40 requests / second
- Hard cap (429 above quota, no overage)
- 1.095M calls/month
- 40 req/sec
- Launchers, bots & fan sites
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Modrinth Minecraft Mods API
Live mod-platform stats from Modrinth, the open Minecraft content platform — no key, nothing stored. The adoption-and-community view of the Minecraft modding ecosystem: how much each mod, modpack, shader or resource pack is downloaded and followed, and which projects are most popular, distinct from the other developer-ecosystem and gaming APIs in the catalogue. The project endpoint returns a single project in full — total downloads, followers, type, categories, supported game versions and loaders, client/server sides and license. The search endpoint searches projects, filterable by type (mod, modpack, shader, resource pack, data pack) and sortable by downloads or follows, each with its download and follower count. The versions endpoint returns a project's recent releases with per-version downloads, supported game versions and loaders. Build mod dashboards, popularity trackers, "is this mod maintained" widgets and modpack browsers on top of real Modrinth data. Look up a project by its slug (sodium, iris, fabric-api); downloads are the headline popularity metric.
api.oanor.com/modrinth-api
Wynncraft API
Wynncraft — the largest Minecraft MMORPG — as an API, from the official Wynncraft API. Look up any player by username for their support rank, total playtime, current guild, and full global stats: total combined level, mobs killed, chests found, completed quests, wars, dungeons, raids and PvP kills/deaths. Pull any guild by name or prefix with its level, member count and roster by rank, owned territories, war count and creation date. Read the live leaderboards (total combined level, guild level, guild territories, combat level, war completions and each gathering profession like mining, fishing and woodcutting), search the full item database for weapons, armour, accessories and ingredients with their tier/rarity, type, level and class requirement, elements, powder slots and major ids, browse the five playable classes, and get a class\x27s ability-tree size. Perfect for Wynncraft companion apps, guild and player trackers, item and build tools, leaderboards and Discord bots. No accounts, no upstream key.
api.oanor.com/wynncraft-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
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Minecraft API?
What's the rate limit for Minecraft API?
How much does Minecraft API cost?
Can I cancel my subscription anytime?
Is Minecraft 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/minecraft-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/minecraft-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/minecraft-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/minecraft-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.