Discover/Smoothie King API
live

Smoothie King APIsmoothieking.com

Access Smoothie King menu nutrition facts, smoothie categories, nutritional enhancers, and store locations via a structured REST API.

Endpoint health
verified 13h ago
get_all_nutrition
find_store
get_nutritional_enhancers
get_nutrition_by_category
get_menu_categories
3/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

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.

Try it

No input parameters required.

api.parse.bot/scraper/692b0b4f-50ad-4a9d-bbf0-5364dce10c63/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/692b0b4f-50ad-4a9d-bbf0-5364dce10c63/get_all_nutrition' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

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)
All endpoints · 5 totalmissing one? ·

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.

Input

No input parameters required.

Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
13h ago
Latest check
3/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a nutrition tracker that logs smoothie macros (calories, protein, carbs, fat) from the get_all_nutrition response.
  • 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_store endpoint.
  • 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.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Smoothie King have an official developer API?+
Smoothie King does not publish a public developer API or documented data feed for menu or location data.
What nutrition fields does the API return, and what serving size do they reflect?+
Both 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?+
Not currently. The API returns full category arrays from 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?+
The 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?+
The 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.
Page content last updated . Spec covers 5 endpoints from smoothieking.com.
Related APIs in Food DiningSee all →
farmersfridge.com API
Access Farmer's Fridge menu data, product details, kiosk locations, and real-time inventory. Browse the full menu or filter by category, retrieve nutrition facts and allergens for individual products, list kiosk locations by access or location type, and check live stock counts at any specific fridge.
mcdonalds.com API
Browse McDonald's full menu and retrieve detailed nutritional information, allergens, and ingredients for any item. Get comprehensive product details to support menu exploration and nutrition-aware applications.
kfc.com.au API
Find KFC Australia locations near you, browse the complete menu, search for specific items, and get detailed information about pricing, nutrition, and allergens for any product. Easily discover what's available at your nearest restaurant and make informed choices about what to order.
menupages.com API
Access restaurant menu data from MenuPages including all categories, items with descriptions and prices, plus customization options and modifiers. Search for specific menus or individual menu items to build restaurant catalogs, comparison tools, or delivery app integrations.
crumblcookies.com API
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.
dennys.com API
Find Denny's restaurant locations near you by searching through states, cities, and zip codes, and browse their complete menu with detailed item information organized by category. Discover specific dishes, filter by tags, and get full details about any Denny's location to plan your visit.
blueapron.com API
Search and browse Blue Apron recipes, menus, and cookbooks to discover meal ideas and get detailed recipe information. Access the complete recipe catalog through sitemaps and detailed recipe listings with ingredients and instructions.
ubereats.com API
Search for restaurants by cuisine or location and browse their menus, prices, ratings, and delivery times. Get detailed information about specific restaurants and menu items to find exactly what you want to order.