Discover/War Thunder API
live

War Thunder APIwiki.warthunder.com

Access the full War Thunder naval vehicle database. List all ships and boats, retrieve battle ratings, armaments, specs, and economy data for any vessel.

Endpoint health
verified 4d ago
list_ships
get_ship_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the War Thunder API?

The War Thunder Wiki Ships API provides structured access to the complete naval vehicle database across 2 endpoints, covering both Bluewater and Coastal Fleet vessels. The list_ships endpoint returns every ship identifier, display name, wiki URL, and fleet classification in a single call. The get_ship_details endpoint then delivers battle ratings per game mode, rank, card info, armament breakdowns, technical specifications, and economy data for any individual vessel.

Try it

No input parameters required.

api.parse.bot/scraper/ac97457d-cdca-4c02-b074-1a44e39571e0/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ac97457d-cdca-4c02-b074-1a44e39571e0/list_ships' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace wiki-warthunder-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.war_thunder_wiki_ship_data_api import WarThunderWiki, Ship, ShipSummary

client = WarThunderWiki()

# List all ships and iterate summaries
for summary in client.shipsummaries.list(limit=5):
    print(summary.name, summary.fleet, summary.url)

# Get full details for a specific ship
ship = client.ships.get(identifier="us_destroyer_clemson_litchfield")
print(ship.name, ship.rank, ship.br)
print(ship.card_info, ship.sections)

# Navigate from summary to detail
entry = client.shipsummary("us_destroyer_clemson_litchfield")
detail = entry.details()
print(detail.name, detail.rank, detail.url)
All endpoints · 2 totalmissing one? ·

List all ships and boats available in the War Thunder Wiki. Covers both Bluewater Fleet and Coastal Fleet categories. Returns an array of ship identifiers, names, URLs, and fleet classifications. Each item includes an identifier usable with get_ship_details for full specifications.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "items": "array of ship summary objects, each containing name, identifier, url, and fleet",
    "total": "integer total count of ships returned"
  },
  "sample": {
    "data": {
      "items": [
        {
          "url": "https://wiki.warthunder.com/unit/us_destroyer_clemson_litchfield",
          "name": "USS Litchfield",
          "fleet": "Bluewater Fleet",
          "identifier": "us_destroyer_clemson_litchfield"
        }
      ],
      "total": 556
    },
    "status": "success"
  }
}

About the War Thunder API

What the API Covers

The API exposes data from the War Thunder Wiki's naval vehicle catalog, which spans Bluewater Fleet warships and Coastal Fleet smaller craft. list_ships returns an array of ship objects — each with a name, identifier, url, and fleet classification — plus a total integer count. The identifier strings (e.g., us_destroyer_fletcher) follow the in-game naming convention and are the required input for the detail endpoint.

Ship Detail Data

get_ship_details accepts a single required identifier parameter and returns a structured object. The br field maps game mode abbreviations (AB, RB) to their battle rating strings. The card_info object surfaces summary data including Rank, Battle rating, Research country, Main role, Research cost, and Purchase cost. The rank field returns the in-game tier designation (e.g., II), and url gives the canonical wiki page link.

Sections and Specifications

The sections object contains parsed wiki content organized by heading: Specification, Economy, and armament-type sections. These fields allow comparison of technical parameters — such as displacement, engine output, and weapon loadouts — across vessels without manually parsing wiki markup. The level of detail within each section reflects what the wiki page itself exposes for that vehicle.

Reliability & maintenanceVerified

The War Thunder API is a managed, monitored endpoint for wiki.warthunder.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when wiki.warthunder.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official wiki.warthunder.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a ship comparison tool using br battle ratings across AB and RB game modes
  • Aggregate Research cost and Purchase cost from card_info to map naval tech-tree progression
  • Filter ships by fleet classification to separate Bluewater and Coastal Fleet lineups
  • Index all ship identifiers from list_ships to power an autocomplete search interface
  • Extract armament sections from get_ship_details to compare weapon loadouts across vessels of the same rank
  • Track in-game economy data per ship using the Economy section returned in sections
  • Generate rank-grouped rosters by combining the rank field from multiple get_ship_details calls
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does War Thunder have an official public developer API for its wiki data?+
War Thunder does not publish an official developer API for the wiki. The wiki at wiki.warthunder.com is a community-maintained reference, and no documented programmatic access endpoint is provided by Gaijin Entertainment.
What does `get_ship_details` return for battle ratings, and does it cover all game modes?+
The br field returns a mapping of game mode abbreviations to battle rating strings. Currently the response includes AB (Arcade Battles) and RB (Realistic Battles). Simulator Battles (SB) ratings are not currently surfaced. The API covers AB and RB data. You can fork it on Parse and revise it to add the missing SB battle rating field.
Can I retrieve the full historical or lore text from a ship's wiki page?+
Not currently. The API returns structured data from technical sections — Specification, Economy, and armament breakdowns — rather than free-form historical or lore prose. You can fork it on Parse and revise it to add the missing historical text endpoint.
Are there any gaps in coverage — do all ships have complete section data?+
Coverage within sections reflects what the underlying wiki page exposes for each vehicle. Less-documented ships may have sparse or missing specification subsections. The list_ships endpoint does return all vessels regardless of how complete their detail pages are, so some identifiers may yield partial data from get_ship_details.
Does the API cover aircraft or ground vehicles, or only naval units?+
The API covers naval vessels only — ships and boats across Bluewater and Coastal Fleet categories. Aircraft and ground vehicle data from the War Thunder Wiki are not currently included. You can fork it on Parse and revise it to add endpoints for those vehicle types.
Page content last updated . Spec covers 2 endpoints from wiki.warthunder.com.
Related APIs in EntertainmentSee all →
wiki.warframe.com API
Search and retrieve detailed damage statistics for every Warframe weapon, including breakdowns by damage type, fire modes, and alternate attacks to optimize your loadout. Compare combat performance metrics across weapons to find the perfect gear for your playstyle.
warframe.wiki API
Search for Warframe items and weapons to view their stats, crafting requirements, and mod information, while staying updated on current in-game events and patch notes. Get detailed information about gear, resources, and game updates all from one convenient source.
robertsspaceindustries.com API
Access Roberts Space Industries (RSI) data including Pledge Store ships and manufacturers, crowdfunding statistics, and Spectrum community messages.
boats.com API
Search millions of yacht and boat listings by your preferred criteria, then view detailed specifications, pricing, and direct seller contact information for any boat that interests you. Find your perfect vessel with comprehensive boat data all in one place.
wiki.rustclash.com API
Access Rust game items, skins, blueprints, and crafting data from the RustClash Wiki. Browse and search items by category, explore skin listings with market prices, and retrieve detailed stats including crafting recipes, repair costs, loot locations, and workbench blueprint tiers.
yachtworld.com API
Search and browse thousands of boat listings on YachtWorld by make, class, type, condition, location, and price range. Retrieve detailed specifications, propulsion data, media assets, and broker contact information for any listing.
marinetraffic.com API
Track maritime vessels in real-time by searching for ships by name, MMSI, or IMO number, viewing their current positions and navigational status, and accessing detailed specifications and photos. Filter vessels by type to get the maritime intelligence you need for shipping, logistics, or maritime awareness.
yachtbuyer.com API
Search and browse thousands of used and new yachts, boats, and tenders with detailed listings and specifications. Stay informed with the latest maritime news and intelligence while discovering top-rated vessels in the market.