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

> Browse Smoothie King's complete menu by category, look up detailed nutrition facts for every smoothie and enhancer, and find nearby store locations. Get comprehensive nutritional information to make informed choices about your smoothie order.

**Category:** Food & Dining | **Website:** [smoothieking.com/](https://smoothieking.com/) | **Docs:** [parse.bot/marketplace/60597148-6b7b-42ab-aeaf-33c8fe2dd9f0/smoothieking-com-api](https://parse.bot/marketplace/60597148-6b7b-42ab-aeaf-33c8fe2dd9f0/smoothieking-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-smoothieking-com-api-60597148/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### find_store

Find Smoothie King stores near a given location. Accepts any US address, zip code, or city/state string. Returns up to 20 stores sorted by proximity, each with name, full address, phone number, weekly hours array, and geographic coordinates.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `address` | string | No | Address, zip code, or city/state to search near. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-smoothieking-com-api-60597148/find_store \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address":"<string>"}'
```

### get_all_nutrition

Retrieve nutrition data for all smoothies across every menu category. Fetches the full nutrition catalog from a single JSON source and returns smoothie items with their 20 oz size nutrition facts. No pagination — the full catalog is returned in a single response.

**Estimated cost:** Metered

_No parameters required._

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

### get_menu_categories

List all available smoothie menu categories with their slugs. These slugs are the accepted values for the get_nutrition_by_category endpoint's category_slug parameter. Returns a static list of 8 categories.

**Estimated cost:** Metered

_No parameters required._

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

### get_nutrition_by_category

Retrieve nutrition data for smoothies in a specific menu category. Returns items with their 20 oz size nutrition facts (calories, fat, carbs, fiber, sugar, protein, sodium) for the given category slug. Use get_menu_categories to discover valid slugs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | Yes | Category slug identifying the menu section. Accepted values: get-fit, feel-energized, manage-weight, be-well, fruit-classics, glp-1, kids, bowls. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-smoothieking-com-api-60597148/get_nutrition_by_category \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>"}'
```

### get_nutritional_enhancers

Retrieve the list of nutritional enhancers available at Smoothie King. Each enhancer includes a name and an optional description. Enhancers are grouped by purpose (fitness, wellness) and parsed from the menu/enhancers page.

**Estimated cost:** Metered

_No parameters required._

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