crumblcookies.com APIcrumblcookies.com ↗
Access Crumbl Cookies store locations, weekly rotating menus, and secret menu items via a single API. 1000+ stores, calorie info, and coordinates included.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/c1f2bf74-61ed-43a3-a85a-bd5dc7821415/get_all_stores' \ -H 'X-API-Key: $PARSE_API_KEY'
Extract all Crumbl Cookies store locations with detailed information including name, full address, phone number, email, store hours, coordinates, and operational status. Returns over 1000 active stores.
No input parameters required.
{
"type": "object",
"fields": {
"stores": "array of store objects with store_id, name, slug, address, street, city, state, state_initials, zip, phone, email, latitude, longitude, open_late, temporarily_closed, currency, timezone, hours (object with day-of-week keys like MON, TUE, etc.)",
"total_stores": "integer - Total number of active stores"
},
"sample": {
"data": {
"stores": [
{
"zip": "79424",
"city": "Lubbock",
"name": "114th",
"slug": "tx114th",
"email": "[email protected]",
"hours": {
"FRI": "8:00 - 24:00",
"MON": "8:00 - 22:00",
"SAT": "8:00 - 24:00",
"THU": "8:00 - 22:00",
"TUE": "8:00 - 22:00",
"WED": "8:00 - 22:00"
},
"phone": "+1 (555) 012-3456",
"state": "Texas",
"street": "11417 Slide Rd, Ste 100",
"address": "11417 Slide Rd, Ste 100, Lubbock, Texas 79424",
"currency": "USD",
"latitude": "33.4889863",
"store_id": "55b99a60-2eec-11ed-912f-4f423fb8f3d0:Store",
"timezone": "America/Chicago",
"longitude": "-101.9212443",
"open_late": true,
"state_initials": "TX",
"temporarily_closed": false
}
],
"total_stores": 1102
},
"status": "success"
}
}About the crumblcookies.com API
This API exposes three endpoints covering the full Crumbl Cookies data surface: over 1,000 store locations with coordinates and hours via get_all_stores, the current weekly classic and rotating cookie menu with calorie details via get_weekly_menu, and location-specific secret menu items including Hometown Picks and testing flavors via get_secret_menu. Each endpoint returns structured JSON with no filtering parameters required.
Store Locations
get_all_stores returns an array of store objects covering every active Crumbl location. Each object includes store_id, name, slug, address, street, city, state, state_initials, zip, phone, email, latitude, longitude, and operational status. The response also includes a total_stores integer. With 1,000+ stores in the dataset, this endpoint is useful for building store finders, coverage maps, or delivery radius tools.
Weekly Rotating Menu
get_weekly_menu returns the current cookie week's date range via cookie_week (with start_date and end_date), a classic_menu object for always-available flavors, and a rotating_menu object for this week's limited offerings. Both menu objects include a name, description, highlight_tag, and an items array with per-cookie details including calorie information and images. The menu refreshes every Monday, so start_date and end_date are the reliable freshness signals.
Secret Menu
get_secret_menu surfaces cookies that don't appear on the standard weekly menu. The response contains secret_cookies — unique flavors with cookie_name, cookie_id, image_url, rating, marketing_type, tag_name, and an available_at_stores list — alongside stores_with_secret_menu, which breaks down each participating location's hometown_picks and testing_items arrays individually. Summary integers total_unique_secret_cookies and total_stores_with_secret_menu give quick aggregate counts without iterating the full arrays.
- Build a store locator using latitude, longitude, address, and hours from
get_all_stores - Send a weekly push notification listing new rotating flavors and their calorie counts from
get_weekly_menu - Map which stores near a user currently carry secret menu Hometown Picks using
get_secret_menu - Track menu rotation history by storing weekly
start_dateandrotating_menuitems on a schedule - Aggregate secret cookie ratings across all stores to identify the highest-rated testing flavors
- Display store contact info (phone, email) alongside coordinates in a franchise directory app
- Alert users when a specific cookie reappears on the rotating or secret menu by comparing
cookie_idvalues
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Crumbl Cookies offer an official public developer API?+
What distinguishes Hometown Picks from Testing flavors in `get_secret_menu`?+
stores_with_secret_menu separates them into two distinct arrays per store: hometown_picks are flavors specific to a location's regional identity, while testing_items are experimental cookies being trialed at select stores. A cookie can appear in one but not the other, and availability varies by store.How current is the weekly menu data, and how do I know when it was last updated?+
cookie_week object in get_weekly_menu includes start_date and end_date fields that define the active window. You can compare start_date against the current date to confirm whether the data reflects the current week.Can I filter stores by state, city, or radius distance?+
get_all_stores returns all active stores in a single response with no server-side filtering parameters. Each store object includes state, city, latitude, and longitude, so client-side filtering by state name or geographic radius is straightforward. The API does not currently support query parameters to narrow results server-side. You can fork it on Parse and revise to add a filtering endpoint.Does the API include nutritional details beyond calorie counts, such as allergens or macros?+
get_weekly_menu endpoint exposes calorie information per cookie item but does not include macronutrient breakdowns, ingredient lists, or allergen data. You can fork the API on Parse and revise it to add an endpoint targeting Crumbl's nutrition detail pages.