Discover/mcdonalds API
live

mcdonalds APImcdonalds.com

Access McDonald's Canada full menu via API. Retrieve nutrition facts, allergens, ingredients, and item details for every menu item by category or item ID.

Endpoint health
verified 3d ago
get_menu
get_item_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
22d ago

What is the mcdonalds API?

The McDonald's Canada Menu API covers 2 endpoints that return menu item data including nutrition facts, allergens, ingredients, and component-level detail. Use get_menu to browse all items with summary nutrition and category filtering, or call get_item_details with a specific numeric item ID to retrieve a full structured nutrition object, allergen breakdown, ingredient statements, and availability time.

Try it
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.
api.parse.bot/scraper/bce67488-088f-4406-8479-7be16bad6801/<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/bce67488-088f-4406-8479-7be16bad6801/get_menu?category=Beef' \
  -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 mcdonalds-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.

"""McDonald's Canada Menu API — browse items, filter by category, get full nutrition details."""
from parse_apis.mcdonalds_menu_api import McDonalds, Category, ItemNotFound

client = McDonalds()

# List beef items using the Category enum
for item in client.menuitemsummaries.search(category=Category.BEEF, limit=3):
    print(item.name, item.allergens)

# Drill into the first chicken item for full nutrition
summary = client.menuitemsummaries.search(category=Category.CHICKEN, limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.allergen_summary)
    for key, nutrient in detail.nutrition.items():
        print(f"  {nutrient.name}: {nutrient.value} {nutrient.unit}")

# Direct lookup by item_id with typed error handling
try:
    hamburger = client.menuitems.get(item_id="200154")
    print(hamburger.name, hamburger.ingredient_statement[:80])
    for comp in hamburger.components:
        print(f"  Component: {comp.name}")
except ItemNotFound as exc:
    print(f"Item not found: {exc.item_id}")

print("exercised: menuitemsummaries.search / summary.details / menuitems.get")
All endpoints · 2 totalmissing one? ·

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.

Input
ParamTypeDescription
categorystringFilter 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.
Response
{
  "type": "object",
  "fields": {
    "items": "array of item summary objects with item_id, name, description, category, slug, allergens, nutrition, and image_url",
    "categories": "array of distinct category name strings present in results",
    "total_items": "integer count of items returned"
  }
}

About the mcdonalds API

Menu Browsing with get_menu

The get_menu endpoint returns an array of menu items, each carrying item_id, name, description, category, slug, allergens, image_url, and a compact nutrition block. The optional category parameter accepts a case-insensitive partial string match, so filtering by 'Beef', 'Breakfast', 'Chicken', or other category names narrows results without requiring an exact match. The response also includes a categories array of distinct category names present in the results and a total_items count.

Item Detail with get_item_details

Pass a numeric item_id (obtained from get_menu) to get_item_details to get the full record for a single item. The nutrition field is a keyed object where each nutrient entry contains name, value, unit, and daily_value_percent, making it straightforward to display structured nutrition panels. The components array provides sub-item ingredient statements and per-component allergens — useful for items like sandwiches that have multiple distinct parts. The time_of_day field indicates breakfast-only or all-day availability where applicable.

Coverage and Scope

All data reflects the McDonald's Canada menu at mcdonalds.com/ca/en-ca. Categories verified in the endpoint include Beef, Breakfast, Chicken, and others present on the Canadian full-menu page. Both endpoints return allergen lists as arrays of individual allergen strings, suitable for filtering or display in nutrition-aware applications.

Reliability & maintenanceVerified

The mcdonalds API is a managed, monitored endpoint for mcdonalds.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when mcdonalds.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 mcdonalds.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
3d ago
Latest check
2/2 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 pulls per-nutrient value and daily_value_percent for any McDonald's Canada menu item
  • Filter breakfast-eligible items using the time_of_day field returned by get_item_details
  • Display allergen warnings by parsing the allergens array from either endpoint
  • Populate a category-based menu browser using the categories response from get_menu with partial-match filtering
  • Render ingredient lists for individual sandwich components using the components[].ingredient_statement field
  • Cross-reference item slug and image_url to build a visual menu gallery linked to full nutrition detail pages
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 McDonald's have an official public developer API?+
McDonald's does not publish a public developer API for menu or nutrition data that is openly accessible to third-party developers.
How does category filtering work in get_menu?+
The category parameter uses a case-insensitive partial match against category names. Passing 'chick' would match categories like 'Chicken' or 'Chicken Sandwiches'. The response includes a categories array listing all distinct category names present in the filtered results alongside the item array.
Does the API cover McDonald's menus outside of Canada?+
The API currently covers the McDonald's Canada menu only. U.S., U.K., and other regional menus are not included. You can fork this API on Parse and revise it to target a different regional menu endpoint.
Are prices or item availability by location included in the response?+
Pricing and location-level availability are not part of the response. The API returns nutrition, allergens, ingredients, category, and time_of_day availability (e.g., breakfast vs. all-day). You can fork this API on Parse and revise it to add pricing fields if that data becomes accessible.
What does the components field in get_item_details represent?+
The components array breaks a menu item into its constituent parts — for example, the bun, patty, and sauce in a burger. Each component object includes a name, an ingredient_statement listing raw ingredients, and an optional allergens array specific to that component.
Page content last updated . Spec covers 2 endpoints from mcdonalds.com.
Related APIs in Food DiningSee all →
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.
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.
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.
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.
smoothieking.com API
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.
postmates.com API
Browse and search Postmates restaurants to discover menus, items, and detailed restaurant information all in one place. Get category suggestions, view complete menus, and access specific item details to find exactly what you're looking for.
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.
dodopizza.ru API
Browse Dodo Pizza's menu across Russian cities to discover pizzas, combos, snacks, drinks, and toppings with detailed product information and nutritional details. Search for specific items, find restaurant locations, and view available sauces all tailored to your local city.