# Prydwen — 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.

> Get detailed character build guides for Wuthering Waves directly from Prydwen.gg, including character ratings, skill recommendations, optimal weapons, echo selections, team compositions, and rotation strategies. Instantly access comprehensive loadout information to optimize your characters' performance.

**Category:** Entertainment | **Website:** [www.prydwen.gg/wuthering-waves/characters](https://www.prydwen.gg/wuthering-waves/characters) | **Docs:** [parse.bot/marketplace/3b9089eb-03ec-4258-86bc-3f7604d0c1c9/prydwen-gg-api](https://parse.bot/marketplace/3b9089eb-03ec-4258-86bc-3f7604d0c1c9/prydwen-gg-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-prydwen-gg-api-3b9089eb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_character_build

Retrieve a comprehensive character build guide including metadata, tier ratings, skills with full multiplier tables, best weapons and echoes, team compositions, rotation guides, and synergies. Each character page is a single fetch containing all build-relevant data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | URL slug of the character (e.g. 'camellya', 'carlotta', 'the-shorekeeper'). Lowercase with hyphens for multi-word names. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-prydwen-gg-api-3b9089eb/get_character_build \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_characters

List all available Wuthering Waves characters with basic metadata. Returns the full roster in a single page; no pagination needed. Each entry carries the slug used by get_character_build for drill-down.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-prydwen-gg-api-3b9089eb/list_characters \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
