Discover/Morrisons API
live

Morrisons APImorrisons.com

Access Morrisons grocery products, prices, reviews, promotions, and category data via 8 structured endpoints. Search, browse, and retrieve nutritional and rating data.

Endpoint health
verified 7d ago
get_product_reviews
get_search_suggestions
search_products
get_products_by_category
get_product_detail
8/8 passing latest checkself-healing
Endpoints
8
Updated
22d ago

What is the Morrisons API?

The Morrisons API covers 8 endpoints for querying the Morrisons online supermarket catalog, including full-text product search, category browsing, individual product detail, customer reviews, and active promotions. The get_product_detail endpoint alone returns nutritional fields, storage instructions, breadcrumbs, promotion objects, and lists of related and similar product IDs — giving a complete data profile for any single grocery item.

Try it
Maximum number of products to return per page.
Search keyword (e.g. 'milk', 'bread', 'chicken')
api.parse.bot/scraper/4a18317c-6c6e-41eb-a4aa-70ff891f9db2/<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/4a18317c-6c6e-41eb-a4aa-70ff891f9db2/search_products?limit=10&query=milk' \
  -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 morrisons-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.morrisons_grocery_api import Morrisons, Category, ReviewSort, ProductNotFound

morrisons = Morrisons()

# Search for products — limit caps total items fetched
for group in morrisons.products.search(query="milk", limit=3):
    print(group.type)
    for product in group.decorated_products:
        print(product.name, product.price.amount, product.price.currency)

# Autocomplete suggestions for partial queries
for suggestion in morrisons.products.suggestions(query="bre", limit=5):
    print(suggestion)

# Get a specific product by its retailer ID
milk = morrisons.products.get(retailer_product_id="113240422")
print(milk.name, milk.brand, milk.available)

# Fetch reviews sorted by highest rated
review_page = milk.reviews(sort=ReviewSort.HIGHEST_RATED)
print(review_page.review_count, review_page.rating_histogram)
for review in review_page.reviews:
    print(review.headline, review.rating, review.is_verified_buyer)

# Browse current promotions
for group in morrisons.products.promotions(limit=2):
    for product in group.decorated_products:
        print(product.name, product.price.amount)

# Browse category tree and drill into a category's products
for cat in morrisons.categories.list(limit=3):
    print(cat.name, cat.retailer_category_id, cat.product_count)

fruit_veg = morrisons.category(retailer_category_id="176738")
for group in fruit_veg.products(limit=2):
    for product in group.decorated_products:
        print(product.name, product.brand)

# Typed error handling
try:
    morrisons.products.get(retailer_product_id="000000000")
except ProductNotFound as exc:
    print(f"Product not found: {exc.retailer_product_id}")

print("exercised: search / suggestions / get / reviews / promotions / categories.list / category.products")
All endpoints · 8 totalmissing one? ·

Full-text search over the Morrisons product catalog. Returns paginated product groups containing decorated product objects with names, prices, images, ratings, and promotions. Each product group has a type (featured, personalized) and contains a decoratedProducts array.

Input
ParamTypeDescription
limitintegerMaximum number of products to return per page.
queryrequiredstringSearch keyword (e.g. 'milk', 'bread', 'chicken')
Response
{
  "type": "object",
  "fields": {
    "metadata": "object with nextPageToken for pagination",
    "productGroups": "array of product group objects, each containing a decoratedProducts array with product details",
    "additionalPageInfo": "object with categories, filters, sortOptions, and query info"
  },
  "sample": {
    "data": {
      "metadata": {
        "nextPageToken": "e8caaf30-c8ce-4fe5-9311-dbf960eb9e29"
      },
      "productGroups": [
        {
          "type": "personalized",
          "decoratedProducts": [
            {
              "name": "Morrisons British Semi Skimmed Milk 4 Pint",
              "brand": "Morrisons",
              "price": {
                "amount": "1.65",
                "currency": "GBP"
              },
              "available": true,
              "productId": "721a6e29-4bab-43e1-a241-a34296dd606e",
              "ratingSummary": {
                "count": 21,
                "overallRating": "3.2"
              },
              "retailerProductId": "113240422"
            }
          ]
        }
      ],
      "additionalPageInfo": {
        "sortOptions": [
          {
            "selected": true,
            "sortOptionId": "favorite"
          }
        ]
      }
    },
    "status": "success"
  }
}

About the Morrisons API

Product Search and Discovery

The search_products endpoint accepts a query string and an optional limit parameter, returning paginated productGroups arrays. Each group carries a type label (such as featured or personalized) and a decoratedProducts array containing product names, prices, images, rating summaries, and any active promotions. A nextPageToken in the metadata object handles pagination. The additionalPageInfo field adds filter options, sort options, and category facets for the query. For typeahead interfaces, get_search_suggestions takes a partial string and returns a suggestions array of completed terms.

Category Browsing

get_category_list returns the full Morrisons category tree as a nested categories array with up to 4 levels of childCategories. Each node includes a name, categoryId, retailerCategoryId, and productCount. Pass a retailerCategoryId to get_products_by_category to get paginated product listings for that node, along with breadcrumb data and sort/filter options in additionalPageInfo.

Product Detail and Reviews

get_product_detail takes a numeric retailer_product_id and returns a product object with name, brand, price, images, ratingSummary, categoryPath, and a promotions array. The bopData object adds a detailedDescription and structured fields covering brand, storage and usage, and return address. bopPromotions lists expanded promotion objects. For social proof data, get_product_reviews accepts a UUID product_id and returns an array of reviews — each with a headline, rating, nickname, createdDate, comments text, and isVerifiedBuyer flag — plus a ratingHistogram of five integers covering 1-star through 5-star counts.

Promotions and Similar Products

get_promotions returns currently active site-wide offers as productGroups containing decorated products on promotion, with no required inputs. get_similar_products accepts a retailer_product_id and returns an items array of UUID productId strings that can feed directly into get_product_reviews or further detail lookups.

Reliability & maintenanceVerified

The Morrisons API is a managed, monitored endpoint for morrisons.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when morrisons.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 morrisons.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
7d 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 grocery price tracker that monitors Morrisons product prices and flags promotion changes from get_promotions.
  • Aggregate nutritional data across product categories using the fields object returned by get_product_detail.
  • Power a recipe cost estimator by searching ingredients via search_products and extracting per-unit prices.
  • Construct a review sentiment dashboard using reviews, ratingHistogram, and isVerifiedBuyer from get_product_reviews.
  • Generate a competitive category map by traversing the four-level hierarchy from get_category_list.
  • Build a typeahead search widget for a Morrisons-focused shopping app using get_search_suggestions.
  • Identify product bundles or substitution options by walking the similarProducts and relatedProducts arrays from get_product_detail.
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 Morrisons have an official public developer API?+
Morrisons does not publish a documented public developer API for third-party use. This Parse API provides structured access to product, category, review, and promotion data from the Morrisons website.
What is the difference between `relatedProducts` and `similarProducts` in `get_product_detail`?+
get_product_detail returns both relatedProducts and similarProducts as separate arrays of product IDs. relatedProducts typically reflects editorially or contextually linked items, while similarProducts reflects substitutable alternatives. Both return numeric and UUID identifiers usable in further endpoint calls.
Does the API return Morrisons More loyalty card pricing or member-only promotions?+
The API returns promotions as surfaced on publicly accessible product and promotions pages, reflected in the promotions array on product objects and in bopPromotions. Member-exclusive pricing tied to individual loyalty accounts is not currently exposed. You can fork this API on Parse and revise it to target account-specific pricing endpoints if that data becomes accessible.
How does pagination work across endpoints that return product listings?+
Endpoints like search_products, get_products_by_category, and get_promotions all return a metadata object containing a nextPageToken string. Pass that token in your next request to retrieve the following page of results. get_product_reviews uses a nextPage field inside its own metadata object for the same purpose.
Does the API cover Morrisons store availability or click-and-collect stock levels?+
Not currently. The API covers product catalog data, pricing, promotions, reviews, and category structure. Per-store stock or click-and-collect availability is not included in any endpoint response. You can fork the API on Parse and revise it to add an endpoint targeting store-level inventory if that data is accessible.
Page content last updated . Spec covers 8 endpoints from morrisons.com.
Related APIs in EcommerceSee all →
Morrisons API – Products, Prices & Reviews · Parse