Fandom APIstealabrainrot.fandom.com ↗
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.
curl -X GET 'https://api.parse.bot/scraper/d64c42ac-e80a-482f-a092-aedb4525ff08/get_brainrots?rarity=Common&spawn_type=Carpet+Spawns' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace stealabrainrot-fandom-com-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: Steal a Brainrot Wiki SDK — browse and filter brainrot collectibles."""
from parse_apis.stealabrainrot_fandom_com_api import StealABrainrot, Rarity, SpawnType, NotFoundError
client = StealABrainrot()
# List all brainrots of a specific rarity tier.
for brainrot in client.brainrots.list(rarity=Rarity.LEGENDARY, limit=5):
print(brainrot.name, brainrot.spawn_type, brainrot.image_url)
# Filter by spawn type to see only carpet spawns.
first = client.brainrots.list(spawn_type=SpawnType.CARPET_SPAWNS, limit=1).first()
if first:
print(first.name, first.rarity, first.image_url)
# Combine filters: Mythic rarity, non-carpet spawns.
for brainrot in client.brainrots.list(rarity=Rarity.MYTHIC, spawn_type=SpawnType.NON_CARPET_SPAWNS, limit=3):
print(brainrot.name, brainrot.rarity, brainrot.spawn_type)
# Handle errors gracefully.
try:
for brainrot in client.brainrots.list(rarity=Rarity.OG, limit=5):
print(brainrot.name, brainrot.rarity)
except NotFoundError as exc:
print(f"Not found: {exc}")
print("exercised: brainrots.list with rarity/spawn_type filters")
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).
| Param | Type | Description |
|---|---|---|
| rarity | string | Filter results to a single rarity tier. Omitting returns all rarities. |
| spawn_type | string | Filter results to a single spawn type. Omitting returns all spawn types. |
{
"type": "object",
"fields": {
"total": "integer",
"brainrots": "array of brainrot objects each containing name (string), rarity (string), spawn_type (string), and image_url (string)"
},
"sample": {
"data": {
"total": 26,
"brainrots": [
{
"name": "Burbaloni Loliloli",
"rarity": "Legendary",
"image_url": "https://static.wikia.nocookie.net/stealabr/images/c/c6/Burbaloni_Loliloli.png",
"spawn_type": "Carpet Spawns"
},
{
"name": "Chimpanzini Bananini",
"rarity": "Legendary",
"image_url": "https://static.wikia.nocookie.net/stealabr/images/0/0b/Default_Chimpanzini_Bananini.png",
"spawn_type": "Carpet Spawns"
},
{
"name": "Clickerino Crabo",
"rarity": "Legendary",
"image_url": "https://static.wikia.nocookie.net/stealabr/images/a/a1/Clickerinocrabo.png",
"spawn_type": "Non-Carpet Spawns"
}
]
},
"status": "success"
}
}About the Fandom API
The Fandom API on Parse exposes 1 endpoint for the publicly available data on stealabrainrot.fandom.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.