# Wiki Warthunder — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Look up detailed specs, armaments, and economic data for any War Thunder ship or boat. Search through the complete naval vehicle database to find technical information and compare stats across the Bluewater and Coastal fleets.

**Category:** Entertainment | **Website:** [wiki.warthunder.com/](https://wiki.warthunder.com/) | **Docs:** [parse.bot/marketplace/5e8a66fb-b420-49a6-9ed1-80f6ccb8814e/wiki-warthunder-com-api](https://parse.bot/marketplace/5e8a66fb-b420-49a6-9ed1-80f6ccb8814e/wiki-warthunder-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-wiki-warthunder-com-api-5e8a66fb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_ship_details

Get comprehensive details for a specific ship or boat, including rank, battle ratings per game mode, card info (costs, country, role), and detailed sections covering specifications, armaments, and economy data. The identifier comes from list_ships results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `identifier` | string | Yes | The unique identifier of the ship, as returned by the list_ships endpoint (e.g., 'us_destroyer_clemson_litchfield', 'us_battleship_arizona_1931'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wiki-warthunder-com-api-5e8a66fb/get_ship_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"identifier":"<string>"}'
```

### list_ships

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wiki-warthunder-com-api-5e8a66fb/list_ships \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
