Discover/ALDI API
live

ALDI APInew.aldi.us

Search ALDI US grocery products by keyword and ZIP code. Get pricing, sale status, availability, dietary attributes, and product details via 2 structured endpoints.

Endpoint health
verified 1d ago
search_products
get_product_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
1d ago

What is the ALDI API?

The new.aldi.us API provides 2 endpoints for querying ALDI US grocery products by keyword and store location. The search_products endpoint returns up to 60 products per request, each with name, price, size, sale status, availability, image URL, and a direct product link scoped to a store near a given ZIP code. A companion get_product_details endpoint exposes additional fields including brand, dietary attributes, weight estimate, and pricing unit for a specific product ID.

Try it
Sort order for results.
Maximum number of products to return (max 60).
Search keyword.
5-digit US ZIP code for store location context.
api.parse.bot/scraper/31f011bb-8718-4424-bcff-0f9f6bb1b28a/<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/31f011bb-8718-4424-bcff-0f9f6bb1b28a/search_products?sort=bestMatch&limit=5&query=chicken&zip_code=32824' \
  -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 new-aldi-us-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: ALDI US Grocery Products API — search, filter, and inspect products."""
from parse_apis.new_aldi_us_api import Aldi, Sort, ProductNotFound

client = Aldi()

# Search for chicken products sorted by price (low to high), capped at 5 items.
for product in client.products.search(query="chicken", sort=Sort.PRICE_ASC, limit=5):
    print(product.name, product.price_display, product.size, product.stock_status)

# Drill into the first search hit for full details including weight estimate.
product = client.products.search(query="milk", limit=1).first()
if product:
    detail = client.products.get(product_id=product.product_id)
    print(detail.name, detail.price_display, detail.weight_estimate, detail.dietary_attributes)

# Typed error: attempt to fetch a product that does not exist.
try:
    client.products.get(product_id="0000000")
except ProductNotFound as exc:
    print(f"Product not found: {exc.product_id}")

print("exercised: products.search / products.get / Sort enum / ProductNotFound error")
All endpoints · 2 totalmissing one? ·

Search ALDI grocery products by keyword, scoped to a store near the given ZIP code. Returns product name, price, size, availability, sale status, image, and direct product link. Results are auto-iterated; pass limit to cap total items returned.

Input
ParamTypeDescription
sortstringSort order for results.
limitintegerMaximum number of products to return (max 60).
queryrequiredstringSearch keyword.
zip_codestring5-digit US ZIP code for store location context.
Response
{
  "type": "object",
  "fields": {
    "query": "string",
    "products": "array of product objects",
    "zip_code": "string",
    "total_results": "integer"
  },
  "sample": {
    "data": {
      "query": "chicken",
      "products": [
        {
          "name": "Kirkwood Family Pack Chicken Breasts",
          "sale": null,
          "size": "per lb",
          "brand": "kirkwood",
          "price": "10.95",
          "available": true,
          "image_url": "https://d2lnr5mha7bycj.cloudfront.net/product-image/file/large_53ce195e-25c6-4388-a5f5-19f60b060a63.jpg",
          "product_id": "19554637",
          "product_url": "https://www.aldi.us/store/aldi/product/19554637-fresh-family-pack-chicken-breasts-per-lb",
          "pricing_unit": "$2.19 / lb",
          "stock_status": "Many in stock",
          "price_display": "$10.95"
        }
      ],
      "zip_code": "32824",
      "total_results": 5
    },
    "status": "success"
  }
}

About the ALDI API

Endpoints and Core Data

The search_products endpoint accepts a required query string and an optional 5-digit zip_code to scope results to a nearby ALDI store. It returns a products array alongside total_results and the echoed zip_code. Each product object includes name, price, size, available, a sale object (or null when no promotion is active), image_url, and product_url. An optional limit parameter caps results at a maximum of 60, and a sort parameter controls result ordering.

Product Detail Lookup

Once you have a product_id from search results, pass it to get_product_details to retrieve enriched data for that item. The response adds brand, pricing_unit, dietary attributes, and a weight estimate not returned in bulk search results. The same zip_code parameter applies here, so pricing and availability reflect a specific store location rather than a national default.

Location Scoping and Sale Data

Both endpoints accept zip_code, which matters for ALDI because pricing and in-store availability can vary by location. The sale field in both endpoints is either a structured object describing the promotion or null, making it straightforward to filter for discounted items. The available boolean indicates whether the product is currently in stock at the resolved store.

Reliability & maintenanceVerified

The ALDI API is a managed, monitored endpoint for new.aldi.us — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when new.aldi.us 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 new.aldi.us 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
1d 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 grocery price tracker that monitors ALDI product prices and flags when a sale object appears on a watched item.
  • Compare ALDI shelf prices across multiple ZIP codes by calling search_products with the same query and different zip_code values.
  • Power an ingredient cost estimator that looks up ALDI prices for recipe components using search_products.
  • Filter ALDI search results for dietary-specific products using attributes returned by get_product_details.
  • Aggregate ALDI weekly sale items by scanning product results for non-null sale objects across common grocery categories.
  • Build a product availability checker that uses the available boolean to alert users when a specific ALDI item is back in stock near their ZIP code.
  • Enrich a grocery app catalog with ALDI product images and direct links using the image_url and product_url fields from search results.
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 ALDI have an official public developer API?+
ALDI does not publish a public developer API for its US storefront at new.aldi.us. This Parse API provides structured access to product search and detail data that is otherwise only browsable on their website.
What does the `sale` field actually contain, and how is it different from `price`?+
The price field is the standard shelf price as a string. The sale field is either null (no current promotion) or a structured object describing the active sale. Checking for a non-null sale is the reliable way to identify discounted products — the price field alone does not distinguish sale pricing from regular pricing.
Does the ZIP code affect results, or is it cosmetic?+
It affects results meaningfully. ALDI store inventory and pricing are location-dependent. Both search_products and get_product_details use the provided zip_code to resolve a nearby store and return that store's pricing and availability. Omitting zip_code may return a default or national view that doesn't reflect local stock.
Does the API return customer reviews or ratings for ALDI products?+
Not currently. The API covers product name, price, size, sale status, availability, brand, dietary attributes, and weight estimate. You can fork it on Parse and revise it to add a reviews endpoint if that data becomes accessible on the product pages.
Can I retrieve the full ALDI product catalog or browse by category?+
The API currently supports keyword search via search_products rather than category browsing or full catalog export. Results are capped at 60 items per call via the limit parameter. You can fork it on Parse and revise it to add a category-browse endpoint covering ALDI's department structure.
Page content last updated . Spec covers 2 endpoints from new.aldi.us.
Related APIs in Food DiningSee all →
resy.com API
Search for restaurants across cities and check real-time availability to find open reservation slots on Resy. Discover trending and top-rated venues with detailed information about dining options, menus, and available time slots across selected dates.
opentable.com API
Search for restaurants across the US with ratings, reviews, photos, and pricing information, plus get real-time availability and autocomplete suggestions as you type. Check reservation openings and explore detailed restaurant features to find and book your perfect dining experience.
fdc.nal.usda.gov API
Search across thousands of foods to get detailed nutritional information, serving sizes, and ingredient data from USDA's comprehensive food database. Find nutrition facts for branded products, legacy foods, and foundation foods all in one place.
guide.michelin.com API
Access data from guide.michelin.com.
opentable.ca API
Search and discover restaurants on OpenTable, view detailed information like menus and reviews, and check real-time dining availability across metro areas. Find top-rated restaurants in your location and instantly see which tables are open for your preferred date and time.
publix.com API
Access Publix grocery store data including product search, pricing, promotions, weekly ad deals, store locations, and category browsing.
auchan.fr API
Search and compare Auchan grocery products with real-time prices and availability. Search by keyword, browse categories, retrieve detailed product information, find nearby stores, and get search suggestions.
ocado.com API
Search and browse Ocado UK's grocery catalog, view detailed product information including nutritional data, and discover related items to add to your cart. Get instant search suggestions and manage your shopping cart contents all in one place.