Discover/Max Burgers API
live

Max Burgers APIorder.maxburgers.com

Access Max Burgers restaurants, menus, and cart sessions across Sweden, Denmark, Norway, and Poland via a structured REST API with 8 endpoints.

Endpoint health
verified 4d ago
get_menu
create_order
get_stores
get_product_details
get_cart
8/8 passing latest checkself-healing
Endpoints
8
Updated
26d ago

What is the Max Burgers API?

The Max Burgers API exposes 8 endpoints covering store locations, full menus, product details, and live cart sessions across Max Burgers' four operating markets: Sweden, Denmark, Norway, and Poland. Starting with get_stores, you can retrieve every restaurant's coordinates, opening hours, and timezone, then drill into per-store menus with get_menu to pull category trees, product pricing, and currency information localized to any supported culture code.

Try it

No input parameters required.

api.parse.bot/scraper/66798bf8-1c8f-4e81-b7fa-1041245ec549/<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/66798bf8-1c8f-4e81-b7fa-1041245ec549/get_countries' \
  -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 order-maxburgers-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.

"""Walkthrough: Max Burgers SDK — browse stores, products, and manage orders."""
from parse_apis.max_burgers_api import MaxBurgers, CountryCode, MenuType, CultureCode, ResourceNotFound

client = MaxBurgers()

# List Swedish stores with their locations
for store in client.stores.list(country_code=CountryCode.SE, limit=3):
    print(store.name, store.city, store.postal_code)

# Get products for the first store
product = client.products.list(store_id="208", menu_type=MenuType.TAKEAWAY, limit=1).first()
if product:
    print(product.title, product.price)
    # Drill into product details to see modifier groups
    detail = product.details(store_id="208", menu_type=MenuType.TAKEAWAY)
    for group in detail.modifier_groups:
        for item in group.items:
            print(item.title, item.price)

# Create an order and add a product
order = client.orders.create(store_id="208", menu_type=MenuType.TAKEAWAY, country_code=CountryCode.SE)
print(order.order_id, order.currency_iso_code)

# Add product to the order
updated = order.add_product(product_id="14534", quantity=1)
print(updated.product_count, updated.menu_type)

# Retrieve current cart state with typed error handling
try:
    refreshed = updated.get()
    for item in refreshed.order_items:
        print(item.title, item.quantity, item.menu_item_id)
except ResourceNotFound as exc:
    print(f"Order not found: {exc}")

print("exercised: stores.list / products.list / product.details / orders.create / order.add_product / order.get")
All endpoints · 8 totalmissing one? ·

Get list of supported country codes for the Max Burgers ordering system. Returns the four countries where Max Burgers operates: Sweden (se), Denmark (dk), Norway (no), and Poland (pl).

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "countries": "array of country code strings"
  },
  "sample": {
    "data": {
      "countries": [
        "se",
        "dk",
        "no",
        "pl"
      ]
    },
    "status": "success"
  }
}

About the Max Burgers API

Store and Location Data

get_stores accepts a country_code (se, dk, no, or pl) and a culture_code (e.g. sv-se, en-us) and returns a full list of Max Burgers locations in a single response. Each store object includes Id, Name, City, Street, PostalCode, Latitude, Longitude, and TzdbTimeZoneId. The get_countries endpoint returns the four supported country codes if you need to enumerate them programmatically before making a store request.

Menu and Product Data

get_menu takes a store_id, an optional menu_type (takeaway, eatin, or delivery), and optional locale params to return the complete menu for that store. The response includes a Refs object keyed by product ID — each entry carries Title, Price, Description, and Images — plus a Categories array with SubCategoryIds and ParentCategoryIds for building a category hierarchy, and a Currency object with CurrencyIsoCode, CurrencyName, and CurrencySymbol.

get_products wraps the same menu data into a flat products array with enriched fields: Title, Price, Description, ShortDescription, and a Configurables tree. For a single item, get_product_details adds ModifierGroupsDetails — an array of modifier groups each containing an Items array with Id, Title, and Price, covering add-ons, removals, and bread choices.

Cart and Order Management

create_order opens a cart session for a given store and returns an orderId along with storeId, menuType, and currencyIsoCode. Pass that orderId to add_to_cart with a product_id, a quantity, and an optional modifiers JSON array matching the product's Configurables structure. The response returns the full updated order state including orderItems (each with id, title, quantity, menuItemId) and a receiptData object with receiptLines, itemsTotal, and total. get_cart retrieves the current order state at any point using just the order_id.

Reliability & maintenanceVerified

The Max Burgers API is a managed, monitored endpoint for order.maxburgers.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when order.maxburgers.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 order.maxburgers.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
4d ago
Latest check
8/8 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 store locator that maps Max Burgers restaurants by city using Latitude, Longitude, and City fields from get_stores.
  • Compare menu pricing across Sweden, Denmark, Norway, and Poland by calling get_menu with each country_code and reading the Currency and Refs data.
  • Display a structured menu category tree for a kiosk UI using Categories with SubCategoryIds and ParentCategoryIds from get_menu.
  • Show full burger customization options in an ordering app using ModifierGroupsDetails from get_product_details.
  • Prototype a food ordering flow by chaining create_order, add_to_cart, and get_cart to manage a live cart session.
  • Track product availability and pricing changes over time by polling get_products for a specific store_id.
  • Filter menu items by order type (takeaway, eatin, delivery) using the menu_type parameter across get_menu and get_products.
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 Max Burgers have an official public developer API?+
Max Burgers does not publish a public developer API or API documentation. This API provides structured access to their menu and ordering data.
What does get_product_details return that get_products does not?+
get_product_details returns a ModifierGroupsDetails array that is absent from get_products. Each modifier group includes an Items array with Id, Title, and Price for every configurable option — such as add-ons, removals, and bread choices — for that specific product at that store.
Does the menu data vary between takeaway, eatin, and delivery order types?+
Yes. The menu_type parameter (takeaway, eatin, or delivery) can affect which products, prices, and categories are returned by get_menu, get_products, and get_product_details. A product available for eatin may have a different price or may not appear under delivery.
Does the API expose nutritional information or allergen data for menu items?+
Not currently. Product responses include Title, Description, ShortDescription, Price, and Images, but no nutritional values or allergen fields are returned by any endpoint. You can fork this API on Parse and revise it to add an endpoint targeting that data if it becomes available from the source.
Can I complete a payment or place a final order through this API?+
The API supports creating an order session, adding items to a cart, and reading the cart state including totals via receiptData. Payment processing and order submission are not covered by the current endpoints. You can fork this API on Parse and revise it to add a checkout or payment endpoint.
Page content last updated . Spec covers 8 endpoints from order.maxburgers.com.
Related APIs in Food DiningSee all →
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.
food.grab.com API
Search for GrabFood restaurants by location and retrieve complete menu listings with prices and details for any store. Access real-time restaurant information and full dining options using a guest token obtained from the browser.
wolt.com API
Browse and discover restaurants, stores, and food items available on the Wolt delivery platform, with access to detailed menus, venue information, and the ability to search across categories and cities. Filter venues by location, explore their complete offerings, and find specific items to compare options across the Wolt network.
nemlig.com API
Search and browse grocery products across categories on nemlig.com, view detailed product information and recipes, check current promotional offers, and manage a shopping basket. Add items to a basket and organize them before checkout.
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.
chownow.com API
Search for nearby restaurants, view their operating hours and delivery zones, and browse complete menus with all items, modifiers, and prices. Access detailed restaurant information and locations to find exactly what you're looking for on the ChowNow marketplace.
ica.se API
Find ICA stores near you with their contact information, addresses, and opening hours, plus browse current national offers across all locations. Get real-time details about any ICA store to plan your shopping trips efficiently.
migros.ch API
Search and browse Migros' product catalog to find items by name or category, view detailed product information, and discover current promotional offers. Get everything you need to shop smarter at Switzerland's leading supermarket.