# Survivors.gg — 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.

> Monitor real-time player counts, team limits, and wipe schedules across all Survivors.gg Rust servers to find the perfect server to join. Get instant access to connection details and server status information to coordinate your gameplay and plan your raiding strategy.

**Category:** Entertainment | **Website:** [survivors.gg/servers/](https://survivors.gg/servers/) | **Docs:** [parse.bot/marketplace/b2d4cb21-67d5-437b-9fc4-d206e5d780a7/survivors-gg-api](https://parse.bot/marketplace/b2d4cb21-67d5-437b-9fc4-d206e5d780a7/survivors-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-survivors-gg-api-b2d4cb21/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_servers

Returns all Survivors.gg Rust servers with live player counts, team limits, map info, wipe schedules (next wipe, last wipe, upcoming wipes), and connection details. Optionally filter by team limit. A single request fetches all servers (currently ~13); no pagination needed.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `team_limit` | integer | No | Filter servers by team limit. 2=Duo, 3=Trio, 4=Quad, 5=Max 5, 8=Max 8, 10=Max 10, 0=No Limit. Omitting returns all servers. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-survivors-gg-api-b2d4cb21/get_servers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"team_limit":"<integer>"}'
```
