Smoothie King APIsmoothieking.com ↗
Access Smoothie King menu nutrition facts, smoothie categories, nutritional enhancers, and store locations via a structured REST API.
What is the Smoothie King 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.
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'
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 smoothieking-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.
from parse_apis.smoothie_king_api import SmoothieKing, CategorySlug
sk = SmoothieKing()
# List all menu categories
for category in sk.categories.list():
print(category.name, category.slug)
# Get nutrition for a specific category using the enum
fitness_category = sk.category(CategorySlug.FITNESS_BLENDS)
for smoothie in fitness_category.nutrition():
print(smoothie.item_name, smoothie.calories, smoothie.protein)
# Search for stores near an address
for store in sk.stores.search(address="Houston, TX"):
print(store.name, store.address, store.phone)
# List all enhancers
for enhancer in sk.enhancers.list():
print(enhancer.name, enhancer.description)
Retrieve nutrition data for all smoothies across every menu category. Internally iterates all known categories (fitness-blends, manage-weight-blends, be-well-blends, feel-energized-blend, enjoy-a-treat-blends, kids-blends, smoothie-bowls, power-eats) and returns a combined flat list of items with their 20 oz size nutrition facts. No pagination — the full catalog is returned in a single response.
No input parameters required.
{
"type": "object",
"fields": {
"items": "array of smoothie nutrition objects each containing item_name, calories, fat, carbs, fiber, sugar, protein, sodium"
},
"sample": {
"data": {
"items": [
{
"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 Smoothie King API
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.
The Smoothie King API is a managed, monitored endpoint for smoothieking.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when smoothieking.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official smoothieking.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- 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 | 100 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.