API · /pokemonshowdown-api

Pokemon Showdown Battle API

healthy 3,170 Subscribers

Competitive Pokémon battle data as an API, built on the open Pokémon Showdown dataset — the data that powers the popular online battle simulator. Look up any Pokémon by name for its National Dex number, types, base stats (HP, Attack, Defense, Sp. Atk, Sp. Def, Speed) and base-stat total, its regular and hidden abilities, gender ratio, egg groups, height, weight and evolution line, plus a sprite. Browse every Pokémon of a given type, and look up any battle move for its base power, accuracy, type, category (physical, special or status), PP, priority, target and effect — or filter moves by type and category. Pull a random Pokémon too. Real competitive data, no key needed upstream. Ideal for team builders, damage calculators, battle tools and Pokémon fan apps.

api.oanor.com/pokemonshowdown-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/pokemonshowdown-api/openapi.json
/api/pokemonshowdown-api/llms.txt

Discovery: GET /api/index.json lists every API.

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
509 ms
Server probes · 24h
Subscribers
3,170
active
Total calls
45
last 7 days
status Full status page → · 15 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 11,200 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 11,200 calls/month
  • 2 req/sec
  • Pokemon + moves
  • No credit card
Sign in to subscribe

Starter

€3.20 /month

  • 146,000 calls / month
  • 8 requests / second
  • Hard cap (429 above quota, no overage)
  • 146k calls/month
  • 8 req/sec
  • Type/category filters
  • Email support
Sign in to subscribe

Pro

€15.50 /month

  • 755,000 calls / month
  • 25 requests / second
  • Hard cap (429 above quota, no overage)
  • 755k calls/month
  • 25 req/sec
  • Team builders / calculators
  • Priority support
Sign in to subscribe

Mega

€58.00 /month

  • 3,480,000 calls / month
  • 50 requests / second
  • Hard cap (429 above quota, no overage)
  • 3.48M calls/month
  • 50 req/sec
  • Battle tools / fan platforms
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Pokémon TCG API

The Pokémon Trading Card Game as an API, powered by TCGdex — clean JSON, no key. Search and look up cards with high-resolution images, HP, types, stage and evolution, abilities and attacks (cost, damage, effect), weaknesses, resistances and retreat cost, rarity, illustrator, legality and live market pricing. Browse every set and series, and open a set for its full card list with release date, card count and logo. Covers thousands of cards from Base Set to the latest expansions. Live data straight from TCGdex. Distinct from the Pokémon video-game Pokédex: this is the collectible card game — ideal for deck builders, collection trackers, price tools, card scanners and TCG apps. 6 data endpoints. Authenticated with an x-oanor-key; fair-use rate limits per plan.

api.oanor.com/pokemontcg-api

Pokémon API

Pokémon details — types, abilities, base stats, height, weight, sprites and official artwork — the full Pokédex roster, and type matchups with damage relations. Backed by PokeAPI. Perfect for games, fan apps, team builders, quizzes and chatbots.

api.oanor.com/pokemon-api

TETR.IO API

Live player, ranking and record data from TETR.IO, the massively-popular competitive online Tetris game, via its public API. TETR.IO is a multiplayer ranked game with millions of players. Get a player's profile together with their TETRA LEAGUE standing — their level (XP), games played and won, country and supporter status, plus their league rank letter, their TR rating, their global standing and the competitive stats that define a Tetris player: attack per minute, pieces per second and versus score. Pull a player's personal bests in the two solo modes, the 40-Lines sprint time and the Blitz score, each with its global rank. Get the top of the TETRA LEAGUE — the best ranked players in the world. Read TETR.IO's live global numbers — total accounts, ranked players, records set and games played. Live, no key, nothing stored. Distinct from other gaming and social-profile APIs — this is the TETR.IO TETRA LEAGUE and its players. Perfect for leaderboard, esports, gaming-community and stats apps.

api.oanor.com/tetrio-api

Steam Reviews API

Live Steam user-review sentiment as an API — what players really think of any game on Steam, served from Steam's public review data. For any game, looked up by its Steam app id or by name, it returns the aggregate review summary (total reviews, positive and negative counts, the positive percentage and Steam's own rating label such as "Very Positive" or "Mixed"), plus a sample of recent reviews with their text, whether the author recommends the game, helpful and funny votes, the author's playtime and the review language. Get the full reviews feed, the lightweight sentiment summary, or search Steam to resolve a game name to its app id. The community-sentiment layer for gaming, review and dashboard apps. Live, no key. Distinct from a Steam store-catalogue API — this returns the user reviews and rating sentiment, not the store listing.

api.oanor.com/steamreviews-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Pokemon Showdown Battle API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Pokemon Showdown Battle API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Pokemon Showdown Battle API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Pokemon Showdown Battle API cost?
Pokemon Showdown Battle API has a free tier with 100 calls / month. Paid plans start at €3.20 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Pokemon Showdown Battle API GDPR-compliant?
All requests to Pokemon Showdown Battle API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

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/pokemonshowdown-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/pokemonshowdown-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/pokemonshowdown-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/pokemonshowdown-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 in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 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 in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.