Discover/Shoprite API
live

Shoprite APIshoprite.co.za

Access Shoprite.co.za product listings, specials, pricing, store locations, and department categories via 8 structured API endpoints.

Endpoint health
monitored
get_all_specials
search_products
get_store_locator
get_product_detail
set_preferred_store
0/7 passing latest checkself-healing
Endpoints
8
Updated
22d ago

What is the Shoprite API?

The Shoprite.co.za API exposes 8 endpoints covering product search, promotional specials, department browsing, store locations, and cross-retailer price comparison. Each product response includes fields like price, special_price, deal_type, valid_until, and availability, giving you real-time data on what Shoprite is currently selling and at what price. The set_preferred_store endpoint lets you scope results to a specific branch using a store ID from get_store_locator.

Try it
Page number (0-indexed).
api.parse.bot/scraper/98bf936f-1cdc-4e00-b994-5c44eb2d1d31/<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/98bf936f-1cdc-4e00-b994-5c44eb2d1d31/get_all_specials?page=0' \
  -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 shoprite-co-za-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: Shoprite ZA SDK — browse specials, search products, drill into departments."""
from parse_apis.shoprite_za_api import Shoprite, Product, Department, Store, StorePreference, ProductNotFound

shoprite = Shoprite()

# Search for products by name — limit caps total items fetched
for product in shoprite.products.search(query="milk", limit=5):
    print(product.name, product.code, product.price, product.availability)

# Browse current specials/promotions
for special in shoprite.products.list_specials(limit=3):
    print(special.name, special.price, special.special_price, special.deal_type)

# Drill into one product's full detail by code
try:
    detail = shoprite.products.get(product_code="10136301EA")
    print(detail.name, detail.price, detail.description, detail.availability)
except ProductNotFound as exc:
    print(f"Product not found: {exc.product_code}")

# List departments and browse their products
dept = shoprite.departments.list(limit=1).first()
if dept:
    print(dept.id, dept.name)
    for item in dept.products(limit=3):
        print(item.name, item.price, item.deal_type)

# List stores
for store in shoprite.stores.list(limit=2):
    print(store.name, store.address, store.town, store.phone)
    result = store.set_preferred()
    print(result.status, result.store_id)

print("exercised: products.search / products.list_specials / products.get / departments.list / dept.products / stores.list / store.set_preferred")
All endpoints · 8 totalmissing one? ·

Retrieve current promotional/special products from the Shoprite specials page. Returns up to 20 products per page with real-time pricing, deal types, and availability. Products include bundle deals, price reductions, and multi-buy offers.

Input
ParamTypeDescription
pageintegerPage number (0-indexed).
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "products": "array of product objects with code, name, brand, category, url, price, special_price, deal_type, valid_until, availability"
  },
  "sample": {
    "data": {
      "page": 0,
      "products": [
        {
          "url": "https://www.shoprite.co.za/p/10538316EA",
          "code": "10538316EA",
          "name": "County Fair Frozen Chicken Mixed Portions With Brine Based Mixture 5kg",
          "brand": "",
          "price": "R249.99",
          "category": "",
          "deal_type": "Now R209.99",
          "valid_until": null,
          "availability": "Available",
          "special_price": "R209.99"
        },
        {
          "url": "https://www.shoprite.co.za/p/10156064EA",
          "code": "10156064EA",
          "name": "Selati Golden Brown Sugar 2kg",
          "brand": "",
          "price": "R59.99",
          "category": "",
          "deal_type": "Now R44.99",
          "valid_until": null,
          "availability": "Available",
          "special_price": "R44.99"
        }
      ]
    },
    "status": "success"
  }
}

About the Shoprite API

Product Data and Search

The search_products endpoint accepts a query string and an optional 0-indexed page parameter, returning up to 20 products per page. Each product object includes code, name, brand, category, url, price, special_price, deal_type, valid_until, and availability. The get_product_detail endpoint takes a single product_code (e.g. 10136301EA) and returns the full product record including a description field not present in list results. Product codes are interchangeable across endpoints — pull them from search or category results and pass them directly to detail.

Specials and Promotions

get_all_specials returns the current promotions page, paginated in sets of 20. The deal_type field distinguishes bundle deals, straight price reductions, and multi-buy offers. valid_until gives the expiry date of each promotion so you can filter or alert on soon-expiring deals. This endpoint requires no inputs beyond an optional page number.

Departments and Category Browsing

get_all_departments returns every top-level department with its id, name, and url. Those id and name values feed directly into get_products_by_category, which requires both category_id (e.g. 2413) and category_name in URL-path format (e.g. All-Departments/Food). Products returned from category browsing carry the same field set as search results, so the data shape is consistent regardless of how you arrive at a product list.

Store Locations and Store-Specific Pricing

get_store_locator returns the full list of Shoprite branches with each store's id, name, address, town, postal_code, phone, latitude, longitude, and openings (weekly hours). Once you have a store_id, pass it to set_preferred_store to scope subsequent product requests — stock levels and prices — to that specific branch. The compare_prices endpoint accepts a product name string and returns a comparison array with shoprite_price, shoprite_special, muncho_price, and muncho_special across available retailers.

Reliability & maintenance

The Shoprite API is a managed, monitored endpoint for shoprite.co.za — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when shoprite.co.za 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 shoprite.co.za 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.

Latest check
0/7 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
  • Track Shoprite promotional prices and valid_until dates to build a weekly specials alert service.
  • Build a grocery price comparison tool using compare_prices to surface Shoprite vs Muncho pricing for a given product.
  • Map all Shoprite store locations using latitude and longitude from get_store_locator to show the nearest branch.
  • Monitor price changes on specific SKUs by polling get_product_detail with a product code on a schedule.
  • Power a category-browsing grocery app using get_all_departments and get_products_by_category with pagination.
  • Filter active bundle deals and multi-buy offers by checking the deal_type field across get_all_specials results.
  • Scope store-specific availability by combining get_store_locator store IDs with set_preferred_store before querying 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 Shoprite have an official developer API?+
Shoprite does not publish an official public developer API. There is no documented REST or GraphQL interface available to third-party developers on the Shoprite website.
What does `set_preferred_store` actually change, and does it persist?+
set_preferred_store accepts a store_id from get_store_locator and returns a confirmation with the set store_id. It scopes stock levels and prices in subsequent product requests to that branch. The preference applies within the same session context; it does not persist automatically across independent API calls in a new session.
Does `get_all_specials` return specials from all store types, including Checkers and Usave?+
The endpoint retrieves specials from the Shoprite specials page specifically. It does not currently include Checkers, Usave, or other Shoprite Group banner promotions. You can fork this API on Parse and revise it to add endpoints targeting those banner pages.
Can I retrieve product reviews or ratings through this API?+
Not currently. The API covers product details including name, description, price, special_price, and availability, but does not expose customer reviews or star ratings. You can fork the API on Parse and revise it to add a reviews endpoint if that data is accessible on the product page.
How many products does each paginated endpoint return, and where does pagination start?+
All paginated endpoints — search_products, get_all_specials, and get_products_by_category — return up to 20 products per page. Pagination is 0-indexed, meaning the first page is page=0. The page parameter is optional and defaults to the first page when omitted.
Page content last updated . Spec covers 8 endpoints from shoprite.co.za.
Related APIs in EcommerceSee all →
products.checkers.co.za API
Search and browse products from Checkers South Africa's online store, compare prices, and discover current specials and deals. Explore the complete product catalog by category to find items and get detailed product information all in one place.
checkers.co.za API
Search for groceries, browse product categories, and find Checkers store locations across South Africa all in one place. Get detailed product information, discover popular items, and locate the nearest store to shop conveniently.
woolworths.co.za API
Browse Woolworths South Africa's food categories and search for specific products while accessing detailed nutritional information and weight-based pricing. Find store locations across the country by province and suburb to check availability and plan your shopping trips.
pnp.co.za API
Search for groceries, browse products by category, and discover current specials at Pick n Pay stores, while accessing detailed product information, store locations, and fresh produce availability all in one place.
superc.ca API
Search for products and browse categories at Super C, a Canadian grocery chain, then view detailed product information and find nearby store locations by postal code. Get real-time access to pricing, availability, and inventory across Super C's network.
instacart.com API
Search for grocery products across multiple retailers, view store locations and availability, and access detailed product information including prices and descriptions. Find the best deals and nearest stores offering the items you need.
bidorbuy.co.za API
Search and browse products on Bob Shop, view detailed product information, seller profiles and ratings, explore category listings, and discover current promotions. Get search suggestions and navigate the complete product catalog to find exactly what you're looking for.
coop.ch API
Search and browse Coop.ch's entire product catalog, including detailed pricing, product information, and category organization. Find specific groceries, compare items across categories, and access up-to-date pricing data from Switzerland's Coop supermarket.