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

> Track World of Warcraft character achievements by retrieving detailed data on completed and incomplete accomplishments organized by category. Monitor your progress across all achievement types to see exactly what you've earned and what remains to unlock.

**Category:** Entertainment | **Website:** [simplearmory.com/#/us/detheroc/tophat/](https://simplearmory.com/#/us/detheroc/tophat/) | **Docs:** [parse.bot/marketplace/1e62f603-e7a0-42ea-bfc1-4826e3eed380/simplearmory-com-api](https://parse.bot/marketplace/1e62f603-e7a0-42ea-bfc1-4826e3eed380/simplearmory-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-simplearmory-com-api-1e62f603/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_achievements

Returns the full list of achievements for a WoW character, each marked as completed or incomplete. Merges the static achievement catalog with the player's completion data. The response includes category hierarchy (category, subcategory, group), expansion derivation, and summary counts. Large response (~8500 achievements).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `character` | string | Yes | Character name in lowercase (e.g. tophat). |
| `realm` | string | Yes | WoW realm/server name in lowercase (e.g. detheroc, area-52). |
| `region` | string | No | WoW region code (e.g. us, eu, kr, tw). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-simplearmory-com-api-1e62f603/get_achievements \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"character":"<string>","realm":"<string>","region":"<string>"}'
```

### get_collectibles

Returns a WoW character's collectibles from SimpleArmory, covering mounts, pets, and toys. Merges the static collectible catalog with the player's collection data. Each category includes all items marked as collected or uncollected, with summary counts. Large response (~4000+ items across categories).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `character` | string | Yes | Character name in lowercase (e.g. tophat). |
| `realm` | string | Yes | WoW realm/server name in lowercase (e.g. detheroc, area-52). |
| `region` | string | No | WoW region code (e.g. us, eu, kr, tw). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-simplearmory-com-api-1e62f603/get_collectibles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"character":"<string>","realm":"<string>","region":"<string>"}'
```
