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

> Find and explore Minecraft servers (Java and Bedrock) by searching through thousands of options with detailed stats, player counts, and descriptions. Discover trending, top-voted, and newly added servers to find your next gaming community.

**Category:** Entertainment | **Website:** [planetminecraft.com/](https://planetminecraft.com/) | **Docs:** [parse.bot/marketplace/f7a9af92-ce5e-43b6-b80f-eee59841f724/planetminecraft-com-api](https://parse.bot/marketplace/f7a9af92-ce5e-43b6-b80f-eee59841f724/planetminecraft-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-planetminecraft-com-api-f7a9af92/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_server_details

Retrieve detailed information for a specific Minecraft server by its URL slug. Returns server IP (when published in the description), full description text, engagement statistics, structured info table metadata, and tags. The slug is obtained from get_servers results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The URL slug of the server, obtainable from get_servers results (e.g. 'pupland-friendly-smp-no-pvp-pup-play-in-testing'). |

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

### get_servers

List Minecraft servers from Planet Minecraft. Supports Java and Bedrock categories, multiple sort orders, keyword search, and pagination. Each result includes server name, online status, player count, and basic engagement stats (votes, views, diamonds, favorites). Pagination is page-number based.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | The category of servers to list. |
| `keywords` | string | No | Search keywords to filter servers by name or description. |
| `order` | string | No | Sort order for the server listing. |
| `page` | integer | No | The page number to retrieve. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-planetminecraft-com-api-f7a9af92/get_servers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","keywords":"<string>","order":"<string>","page":"<integer>"}'
```

### get_user_profile

Retrieve a Planet Minecraft user's public profile by username. Returns display name, avatar, banner, level, rank, subscriber count, online status, about/bio text, custom post cards, social links, and trophies. The username is case-insensitive.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `username` | string | Yes | Planet Minecraft username (e.g. 'wileykitkat'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-planetminecraft-com-api-f7a9af92/get_user_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"<string>"}'
```

### get_user_wall_posts

Retrieve public wall posts from a Planet Minecraft user's profile. Returns post content, author, timestamp, and permalink. Pagination is page-number based with 20 posts per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `username` | string | Yes | Planet Minecraft username whose wall posts to retrieve. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-planetminecraft-com-api-f7a9af92/get_user_wall_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","username":"<string>"}'
```
