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

**Category:** Food & Dining | **Website:** [www.mcdonalds.com/ca/en-ca/full-menu.html](https://www.mcdonalds.com/ca/en-ca/full-menu.html) | **Docs:** [parse.bot/marketplace/4821785f-004c-4c36-9ce6-6f8df5f673dd/mcdonalds-com-api](https://parse.bot/marketplace/4821785f-004c-4c36-9ce6-6f8df5f673dd/mcdonalds-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-mcdonalds-com-api-4821785f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_item_details

Retrieve detailed information for a specific menu item by its numeric ID. Returns full nutrition facts (structured with name, numeric value, unit, and daily-value percentage per nutrient), allergen breakdown, ingredient statements, and component-level detail. The item_id is obtained from get_menu results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `item_id` | string | Yes | Numeric item ID (e.g., '200154' for Hamburger). Use get_menu to find item IDs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mcdonalds-com-api-4821785f/get_item_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"item_id":"<string>"}'
```

### get_menu

Retrieve all McDonald's Canada menu items with summary nutrition data, allergens, and image URLs. Supports optional category filtering via case-insensitive partial match. Returns the full item list when no filter is applied. Each item carries a compact nutrition block (string values like '240 Cals') suitable for quick scanning; use get_item_details for structured numeric nutrition with daily-value percentages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter by category name. Case-insensitive partial match. Verified categories include: 'Beef', 'Breakfast', 'Chicken', 'Beverages', 'McCafé & Bakery', 'Happy Meal', 'Snacks & Sides', 'Sandwiches & Wraps'. Omitting returns all items across all categories. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mcdonalds-com-api-4821785f/get_menu \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```
