Discover/Checkers API
live

Checkers APIcheckers.co.za

Access Checkers grocery product search, category browsing, product details, store finder, and popular searches via a single structured API.

This API takes change requests — .
Endpoint health
verified 48m ago
list_categories
get_product_details
get_popular_searches
get_image_url
4/4 passing latest checkself-healing
Endpoints
7
Updated
7d ago

What is the Checkers API?

The Checkers API covers 7 endpoints that expose grocery product data from Checkers South Africa, including full-text product search via search_products, a three-level category hierarchy via list_categories, per-product nutritional attributes, store locations with trading hours, and trending search terms. Prices are returned in ZAR cents, and image IDs can be resolved to CDN URLs using a dedicated get_image_url endpoint.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/a7a3a4ba-dfb7-4476-9712-8753b2fb3140/<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/a7a3a4ba-dfb7-4476-9712-8753b2fb3140/list_categories' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 7 totalmissing one? ·

Retrieve the full product department and category hierarchy as a tree structure. Returns all categories up to 3 levels deep (departments → categories → sub-categories). Each node includes its ID, name, level, and nested children. Use category IDs from this tree as input to get_category_products.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "success": "boolean indicating successful response",
    "errMessage": "string or null error message",
    "displayCategoryTree": "array of category objects, each with id (string), name (string), level (integer 1-3), imageId (string or null), and nested displayCategories array"
  },
  "sample": {
    "data": {
      "success": true,
      "errMessage": null,
      "displayCategoryTree": [
        {
          "id": "67075e5eff987811364007e6",
          "name": "Appliances",
          "level": 1,
          "imageId": "68c10a895946b5fb019520bd",
          "displayCategories": [
            {
              "id": "67075e6cff987811364007f8",
              "name": "Beauty Appliances",
              "level": 2,
              "imageId": "6822ea39fc590a403d0e4177",
              "displayCategories": [
                {
                  "id": "67075e6eff987811364007fa",
                  "name": "Clippers & Shavers",
                  "level": 3,
                  "imageId": null,
                  "displayCategories": null
                }
              ]
            }
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the Checkers API

Product Search and Category Browsing

The search_products endpoint accepts a required query string and optional page and limit parameters (both 0-indexed) and returns a products array plus a totalCount integer for pagination. Each product object includes id, name, priceWithoutDecimal (ZAR cents), currency, isStockAvailable, isOnPromotion, and an image field. The list_categories endpoint requires no inputs and returns a displayCategoryTree — a nested array of departments, categories, and sub-categories up to three levels deep, each node carrying an id, name, level, and optional imageId.

Category Products and Product Details

get_category_products accepts a category_id from the list_categories tree and returns the same product shape as search_products with its own totalCount for pagination bounds. For richer data, get_product_details takes a product slug formatted as <product-name-hyphenated>-<articleNumber>EA and returns price (float ZAR), imageIds (array), description, articleNumber, isOnPromotion, isStockAvailable, and an attributes array of {name, value} objects covering nutritional info, ingredients, and allergens.

Store Finder and Trending Terms

find_stores accepts lat and lng coordinates and returns stores sorted by proximity. Each store object includes name, brand (one of CHECKERS, CHECKERS_HYPER, CHECKERS_LIQUORSHOP, MEDIRITE), location, tradingTimes, facilities, departments, and a children array for co-located formats like LiquorShop. get_popular_searches requires no inputs and returns a ranked terms array where each entry carries the search term, cumulative count, optional productId, optional imageId, and an updatedOn millisecond timestamp.

Image Resolution

Product and category endpoints return imageId or imageIds string values rather than full URLs. Pass any of these values to get_image_url to receive the resolved CDN url alongside the echoed image_id. This keeps image references consistent without embedding long CDN paths in search or category responses.

Reliability & maintenanceVerified

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

Last verified
48m ago
Latest check
4/4 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 South African grocery price comparison tool using priceWithoutDecimal from search_products across multiple queries.
  • Track which products are currently on promotion by filtering isOnPromotion across category results from get_category_products.
  • Populate a store locator feature with trading hours and facilities using find_stores with user-supplied GPS coordinates.
  • Generate auto-complete search suggestions from the ranked terms returned by get_popular_searches.
  • Display full allergen and ingredient information for a product by reading the attributes array from get_product_details.
  • Map the full category hierarchy for a grocery navigation UI using the three-level displayCategoryTree from list_categories.
  • Render product images in a catalogue by resolving imageIds through the get_image_url endpoint for consistent CDN URLs.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Checkers have an official public developer API?+
Checkers (operated by Shoprite Group) does not publish a public developer API or documented data access programme for external developers as of mid-2025.
What does get_product_details return that search_products does not?+
get_product_details returns a float price, an imageIds array, a description string, the articleNumber, and an attributes array containing nutritional values, ingredients, and allergen data. search_products returns only a priceWithoutDecimal integer, a single image reference, and basic availability and promotion flags.
Does the store finder return store-specific stock or pricing data?+
No. find_stores returns store metadata — name, brand, location, tradingTimes, facilities, and departments — but does not expose per-store inventory or pricing. Product availability across the product endpoints reflects general stock status only. You can fork this API on Parse and revise it to add a store-specific product availability endpoint if that data becomes addressable.
Are product reviews or customer ratings available?+
Not currently. The API covers product details including nutritional attributes, pricing, and promotion status, but does not expose user reviews or star ratings. You can fork the API on Parse and revise it to add a reviews endpoint if that surface is available.
How does pagination work across search and category endpoints?+
Both search_products and get_category_products use a 0-indexed page parameter alongside a limit parameter. The totalCount field in the response indicates the total number of matching products, which you divide by your chosen limit to calculate the number of pages. Requests beyond the available range return an empty products array.
Page content last updated . Spec covers 7 endpoints from checkers.co.za.
Related APIs in Food DiningSee 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.
clicks.co.za API
Search for and browse thousands of products from Clicks, South Africa's leading pharmacy, health, home and beauty retailer, with access to detailed product information, pricing, and the complete category structure. Discover items by keyword search or explore products organized by category to find exactly what you need.
shoprite.co.za API
Access product listings, specials, categories, and store information from Shoprite.co.za. Search products, browse departments, retrieve pricing and availability by store location, and compare prices across retailers.
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.
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.
spar.co.za API
Search the SPAR South Africa grocery catalog by product name to find items with their descriptions, sizes, and images. Note that prices aren't available since they vary by store location.
pricechecker.com API
Search and compare products listed on PriceCheck, including internet plans, data contracts, and electronics. Retrieve detailed pricing, specifications, and contract terms, and compare multiple listings side-by-side across providers.
dischem.co.za API
Search for pharmacy products and retrieve detailed information including prices, descriptions, and images directly from Dis-Chem's catalog. Browse product listings and access complete product details all in one place.