Discover/Zabars API
live

Zabars APIzabars.com

Search Zabar's product catalog, get autocomplete suggestions, and retrieve full product details including price, images, and gift basket contents via API.

Endpoint health
verified 4d ago
search_products
get_suggestions
get_product_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the Zabars API?

The Zabar's API provides 3 endpoints for accessing product data from Zabar's New York gourmet food store. Use search_products to run paginated keyword searches across the catalog, returning fields like name, price, brand, category, badge, and image URL. get_product_details goes deeper, surfacing full descriptions, all product images, availability status, and a whats_inside contents list for gift baskets and bundles.

Try it
Page number (1-based)
Search keyword(s) (e.g., 'chocolate', 'gift basket', 'coffee')
Number of results per page (1-120)
api.parse.bot/scraper/8d0e614c-2183-487f-9d8b-19b8b48b8500/<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/8d0e614c-2183-487f-9d8b-19b8b48b8500/search_products?page=1&query=chocolate&page_size=5' \
  -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 zabars-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: Zabar's Product Search — bounded, re-runnable; every call capped."""
from parse_apis.zabars_product_search_api import Zabars, ProductNotFound

client = Zabars()

# Search for chocolate products — limit= caps TOTAL items fetched across pages.
for product in client.productsummaries.search(query="chocolate", limit=5):
    print(product.name, product.price, product.brand)

# Drill into the first result's full details via the typed navigation op.
summary = client.productsummaries.search(query="gift basket", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.price, detail.availability)
    if detail.whats_inside:
        print("Contents:", len(detail.whats_inside), "items")

# Autocomplete suggestions for search-as-you-type UIs.
suggestions = client.suggestions.lookup(query="coffee")
for cat in suggestions.categories:
    print(cat.name, cat.parent, cat.url)

# Typed error handling when a product URL is stale or removed.
try:
    bad = client.productsummaries.search(query="nonexistent-xyz-000", limit=1).first()
    if bad:
        bad.details()
except ProductNotFound as exc:
    print(f"Product gone: {exc.product_url}")

print("exercised: productsummaries.search / details / suggestions.lookup / ProductNotFound")
All endpoints · 3 totalmissing one? ·

Full-text search over Zabar's product catalog. Returns paginated product summaries including name, price, brand, category, and image. Server-side filtering is keyword-only; finer filtering (brand, price range) is client-side. Pagination via page number; each page returns up to page_size items.

Input
ParamTypeDescription
pageintegerPage number (1-based)
queryrequiredstringSearch keyword(s) (e.g., 'chocolate', 'gift basket', 'coffee')
page_sizeintegerNumber of results per page (1-120)
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "query": "string, the search query used",
    "products": "array of product objects with id, name, url, price, original_price, currency, brand, category, image_url, badge",
    "page_size": "integer, results per page",
    "total_pages": "integer or null, total number of pages",
    "total_results": "integer or null, total number of matching products"
  }
}

About the Zabars API

Search and Browse the Catalog

The search_products endpoint accepts a required query string and optional page (1-based) and page_size (1–120) parameters. Each product in the response includes id, name, url, price, original_price, currency, brand, category, image_url, and badge. The response also returns total_results and total_pages (either integers or null) so you can build paginated UIs. Note that server-side filtering is keyword-only — filtering by brand or price range has to be done client-side on the returned results.

Autocomplete and Search Suggestions

get_suggestions takes a single query string and returns three arrays: products (name, URL, image), categories (name, parent category, URL), and popular_searches (strings). This is a single-page response with no pagination, suited for search-as-you-type interfaces or for discovering category structure and trending terms before issuing a full search.

Full Product Details

get_product_details accepts a product_url — either the path segment (e.g. /zabars-chocolate-bundle/C11014V.html) or a full URL, obtainable from search_products results. It returns the complete description, all images as an array of URLs, price, availability status, and a whats_inside array for products that are gift baskets or curated bundles. Fields like price may be null if the product is unavailable.

Reliability & maintenanceVerified

The Zabars API is a managed, monitored endpoint for zabars.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when zabars.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 zabars.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
3/3 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 gift basket finder that searches by occasion keyword and shows whats_inside contents for each bundle result
  • Track price changes on specific Zabar's products by polling get_product_details and comparing the price field over time
  • Implement a search-as-you-type UI using get_suggestions to surface matching products, categories, and popular search terms
  • Aggregate brand and category fields from search_products to map Zabar's specialty food taxonomy
  • Monitor availability status across a list of product URLs to alert when out-of-stock items return
  • Cross-reference original_price vs price fields from search_products to identify discounted or sale items
  • Discover trending gourmet food terms by reading the popular_searches array from get_suggestions
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 Zabar's have an official developer API?+
No. Zabar's does not publish a public developer API or documentation for programmatic catalog access.
What does the `whats_inside` field contain, and which products include it?+
The whats_inside field is an array of strings listing the individual items included in a product. It is populated for gift baskets and bundle products. For standard single-item products it returns null.
Can I filter search results by brand or price range in the `search_products` request?+
Not via request parameters. The search_products endpoint accepts only query, page, and page_size as inputs. The response does include brand, price, and original_price per product, so filtering by those dimensions must be applied client-side after results are returned.
Are product reviews or customer ratings available through this API?+
Not currently. The API covers product metadata, pricing, availability, descriptions, images, and bundle contents, but does not expose user reviews or ratings. You can fork the API on Parse and revise it to add an endpoint for review data if Zabar's surfaces it on their product pages.
How does pagination work in `search_products`, and is `total_pages` always populated?+
search_products uses 1-based page numbering with a configurable page_size between 1 and 120. The total_pages and total_results fields are integers when the source provides a count, but may return null for certain queries. It is safer to stop paginating when the returned products array is empty rather than relying solely on total_pages.
Page content last updated . Spec covers 3 endpoints from zabars.com.
Related APIs in Food DiningSee all →
zarahome.com API
Search and browse Zara Home's furniture and home décor catalog. Retrieve product details including name, category, price, available sizes or dimensions, materials, colors, and availability status. Browse by category or search by keyword across the full product range.
zumiez.com API
Search Zumiez products by keyword, browse products by category path, and fetch detailed product information (pricing, images, stock status, and attributes) using a product group ID.
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.
williams-sonoma.com API
Search Williams-Sonoma products by keyword, browse product groups by category/group ID, and fetch detailed product information including pricing, images, and product details.
zara.com API
Shop Zara's entire catalog by browsing categories, searching for specific items, and viewing detailed product information including measurements and related products. Find nearby store locations, check real-time inventory availability, and get shipping details all in one place.
tesco.com API
Search and browse Tesco's complete grocery catalog to find products with detailed nutritional information, ingredient lists, and customer reviews. Explore product suggestions via autocomplete and browse items organized by category to make informed shopping decisions.
containerstore.com API
Search The Container Store's product catalog and get real-time autocomplete suggestions to find storage solutions and organizational products. Browse through available items with instant search results and product recommendations as you type.
carrefour.eu API
Search and browse Carrefour's European online product catalog to access pricing, promotions, availability, and detailed product information including nutritional data. Retrieve comprehensive product details across categories to compare prices and find current deals in real-time.