# Minecraft Gamepedia — 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.

> Access detailed information about Minecraft achievements and advancements across both Java and Bedrock editions, including names, descriptions, earning criteria, and Gamerscore point values for console versions. Browse the complete list of in-game goals for either edition.

**Category:** Entertainment | **Website:** [minecraft.gamepedia.com/](https://minecraft.gamepedia.com/) | **Docs:** [parse.bot/marketplace/9f0b6c74-b7a3-4938-a33e-2babeccbd1ab/minecraft-gamepedia-com-api](https://parse.bot/marketplace/9f0b6c74-b7a3-4938-a33e-2babeccbd1ab/minecraft-gamepedia-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-minecraft-gamepedia-com-api-9f0b6c74/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_achievements

Retrieves the complete list of Minecraft Bedrock Edition achievements from the wiki. Each achievement includes its name, in-game description, detailed earning criteria (actual requirements beyond the description), and Gamerscore point value. Returns all achievements in a single response with no pagination. Bedrock achievements carry integer Gamerscore values; achievements without points return 0.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-minecraft-gamepedia-com-api-9f0b6c74/get_achievements \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_advancements

Retrieves the complete list of Minecraft Java Edition advancements from the wiki. Each advancement includes its name, in-game description, and detailed earning criteria. Java advancements do not use a Gamerscore point system; point_value is always 0. Returns all advancements in a single response with no pagination.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-minecraft-gamepedia-com-api-9f0b6c74/get_advancements \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
