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

> Get Crumbl store locations (addresses, hours, and coordinates), this week’s rotating and classic cookie menu with details, and location-specific “secret menu” items like Hometown Picks and testing flavors.

**Category:** Food & Dining | **Website:** [crumblcookies.com/](https://crumblcookies.com/) | **Docs:** [parse.bot/marketplace/e20bfa7a-558d-4b2a-850c-10eaf8b4dd7f/crumblcookies-com-api](https://parse.bot/marketplace/e20bfa7a-558d-4b2a-850c-10eaf8b4dd7f/crumblcookies-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-crumblcookies-com-api-e20bfa7a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_stores

Retrieve all active Crumbl Cookies store locations with full details: name, address, phone, email, coordinates, store hours, and operational status. Returns over 1000 stores across the US. No pagination — the full list is returned in one call.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-crumblcookies-com-api-e20bfa7a/get_all_stores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_secret_menu

Retrieve secret menu cookies — Hometown Picks and Testing flavors — currently offered at specific Crumbl store locations. Returns both a deduplicated list of unique secret cookies with their store availability, and per-store breakdowns showing which secret items each store carries. Availability rotates frequently.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-crumblcookies-com-api-e20bfa7a/get_secret_menu \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_weekly_menu

Retrieve the current weekly menu including classic (always available) and rotating (this week only) cookie flavors. Each item includes name, description, calorie info, images, and partner branding. The rotating menu changes every Monday; classic flavors are permanent.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-crumblcookies-com-api-e20bfa7a/get_weekly_menu \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
