smoothieking.com APIsmoothieking.com ↗
Access Smoothie King menu nutrition facts, smoothie categories, nutritional enhancers, and store locations via a structured REST API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/692b0b4f-50ad-4a9d-bbf0-5364dce10c63/get_all_nutrition' \ -H 'X-API-Key: $PARSE_API_KEY'
Get nutrition data for all smoothies across all categories. Returns a combined list of all items with their 20oz size nutrition facts. Iterates through all known categories internally.
No input parameters required.
{
"type": "object",
"fields": {
"data": "array of smoothie nutrition objects with item_name, calories, fat, carbs, fiber, sugar, protein, sodium"
},
"sample": {
"data": [
{
"fat": 2,
"carbs": 52,
"fiber": 2,
"sugar": 39,
"sodium": 340,
"protein": 27,
"calories": 340,
"item_name": "The Activator® Recovery Watermelon"
},
{
"fat": 3,
"carbs": 3,
"fiber": 1,
"sugar": 1,
"sodium": 350,
"protein": 45,
"calories": 220,
"item_name": "Gladiator® GLP-1 Strawberry"
}
],
"status": "success"
}
}About the smoothieking.com API
The Smoothie King API covers 5 endpoints that expose per-item nutrition data across all menu categories, a store locator, and nutritional enhancer details. The get_all_nutrition endpoint returns a combined array of every smoothie with 8 nutrition fields per item — calories, fat, carbs, fiber, sugar, protein, and sodium — all normalized to the 20 oz serving size. The find_store endpoint returns up to 20 nearby locations given any US address, zip code, or city/state string.
Menu Nutrition Data
The get_all_nutrition endpoint aggregates nutrition facts across every available category into a single response. Each object in the data array includes item_name, calories, fat, carbs, fiber, sugar, protein, and sodium — all reported for the 20 oz serving size. If you only need one category, get_nutrition_by_category accepts a category_slug parameter. Valid slugs are fitness-blends, manage-weight-blends, be-well-blends, feel-energized-blend, and en. You can discover available slugs programmatically with get_menu_categories, which returns each category's human-readable name alongside its slug.
Enhancers
The get_nutritional_enhancers endpoint returns a list of add-in enhancers sold at Smoothie King locations. Each record contains a name and a description. This is useful for building ingredient reference tools or nutrition calculators that account for customization beyond the base smoothie.
Store Locator
The find_store endpoint accepts a free-text address input — a street address, zip code, or city/state string — and returns up to 20 stores sorted by proximity. Each store record includes name, address, phone, hours, latitude, and longitude, making the results suitable for mapping or distance-based filtering on the client side.
- Build a nutrition tracker that logs smoothie macros (calories, protein, carbs, fat) from the
get_all_nutritionresponse. - Filter Smoothie King menu items by category slug to display only weight-management or fitness-focused options.
- Render a store-finder map using latitude and longitude from the
find_storeendpoint. - Display hours and phone numbers for the nearest Smoothie King given a user's zip code.
- Generate a sortable nutrition table comparing sugar and fiber across all 20 oz smoothies.
- Build a smoothie customization tool that lists available enhancers and their descriptions.
- Identify the lowest-calorie options per category for diet-planning applications.
| 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 Smoothie King have an official developer API?+
What nutrition fields does the API return, and what serving size do they reflect?+
get_all_nutrition and get_nutrition_by_category return eight fields per item: item_name, calories, fat, carbs, fiber, sugar, protein, and sodium. All values are for the 20 oz serving size only. Other serving sizes (32 oz, 40 oz) are not currently covered. You can fork this API on Parse and revise it to add endpoints for additional sizes.Can I look up a smoothie's nutrition by name or ingredient?+
get_nutrition_by_category or the complete list from get_all_nutrition; there is no search-by-name or filter-by-ingredient parameter. You can fork this API on Parse and revise it to add a name-search or ingredient-filter endpoint.Does the store locator cover locations outside the United States?+
find_store endpoint is designed for US-based queries — addresses, zip codes, or city/state strings. International Smoothie King locations are not currently covered. You can fork this API on Parse and revise it to extend coverage to non-US markets if needed.Are enhancer nutrition facts (calories, macros) included in the enhancers endpoint?+
get_nutritional_enhancers endpoint returns only name and description for each enhancer. Per-enhancer macros such as calories or protein are not currently included. You can fork this API on Parse and revise it to add a nutrition-facts field to each enhancer record.