# Stealabrainrot Fandom — 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 brainrot collectibles from the Steal a Brainrot Roblox game, including their names, rarity levels, spawn types, and images to help you complete your collection. Find exactly what you need to strategize your gameplay and track down rare items across the game.

**Category:** Entertainment | **Website:** [stealabrainrot.fandom.com/wiki/Brainrots](https://stealabrainrot.fandom.com/wiki/Brainrots) | **Docs:** [parse.bot/marketplace/a872e3bd-6d75-45c9-8e15-2163b1484dd4/stealabrainrot-fandom-com-api](https://parse.bot/marketplace/a872e3bd-6d75-45c9-8e15-2163b1484dd4/stealabrainrot-fandom-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-stealabrainrot-fandom-com-api-a872e3bd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_brainrots

Fetches all brainrots from the Steal a Brainrot wiki page. Each brainrot includes its name, rarity tier, spawn type (how it is obtained), and an image URL. Results can be filtered by rarity and spawn type. Returns the full list in a single response (no pagination).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `rarity` | string | No | Filter results to a single rarity tier. Omitting returns all rarities. |
| `spawn_type` | string | No | Filter results to a single spawn type. Omitting returns all spawn types. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-stealabrainrot-fandom-com-api-a872e3bd/get_brainrots \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"rarity":"<string>","spawn_type":"<string>"}'
```
