# Growagarden2 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.

> Look up detailed information about pets, seeds, crops, and gears from Grow A Garden 2, including images and all their variants. Build your game strategy by accessing complete game data in one convenient place.

**Category:** Entertainment | **Website:** [growagarden2.fandom.com/wiki/Grow_A_Garden_2_Wiki](https://growagarden2.fandom.com/wiki/Grow_A_Garden_2_Wiki) | **Docs:** [parse.bot/marketplace/3313cd29-235e-434b-97e4-4d1c1bb4d7d5/growagarden2-fandom-com-api](https://parse.bot/marketplace/3313cd29-235e-434b-97e4-4d1c1bb4d7d5/growagarden2-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-growagarden2-fandom-com-api-3313cd29/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_gears

Lists all gears from the Grow A Garden 2 wiki. Each gear includes its name, image URL, rarity tier (if available), and use description. Includes gears from all categories: shop gears, Robux-exclusive gears, and unreleased gears. Results are auto-iterated as a single page containing all gears.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-growagarden2-fandom-com-api-3313cd29/list_gears \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_pets

Lists all pets from the Grow A Garden 2 wiki. Each pet includes its name, image URL, rarity tier, description, and available variants (Normal, Rainbow, Big, Mega). Results are auto-iterated as a single page containing all pets.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-growagarden2-fandom-com-api-3313cd29/list_pets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_seeds

Lists all seeds/crops from the Grow A Garden 2 wiki, including regular crops and special seeds (Gold Seed, Mega Seed, Rainbow Seed). Each regular seed includes its name, produce image URL, seed image URL, rarity tier, and available mutation variants. Special seeds have no mutation variants and use the same URL for both produce and seed images. Results are auto-iterated as a single page containing all seeds.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-growagarden2-fandom-com-api-3313cd29/list_seeds \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
