Discover/Conad API
live

Conad APIspesaonline.conad.it

Access Conad's online grocery catalog, store locations by province, and category data via 5 structured endpoints. Products, prices, brands, and images included.

Endpoint health
verified 13h ago
search_products
get_product_detail
get_products_by_category
get_stores_by_province
get_categories
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Conad API?

The Conad Spesa Online API exposes 5 endpoints covering the full product catalog, store locations, and category structure from spesaonline.conad.it. get_products_by_category returns product code, name, brand, price, unit quantity, and image URL for every item in a given category. get_stores_by_province lists store names and addresses for any Italian province. Together these endpoints give structured access to Conad's grocery inventory and physical store network.

Try it
Province slug in lowercase Italian (e.g., 'milano', 'roma', 'torino', 'firenze')
api.parse.bot/scraper/06ee45ae-1dba-4ce9-ae30-5a07b6011c0e/<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/06ee45ae-1dba-4ce9-ae30-5a07b6011c0e/get_stores_by_province?province=milano' \
  -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 spesaonline-conad-it-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.

"""Conad grocery catalog: browse categories, search products, fetch details."""
from parse_apis.conad_spesa_online_api import Conad, Province, ProductNotFound

client = Conad()

# List stores available in Milano
for store in client.stores.list(province=Province.MILANO, limit=3):
    print(store.name, store.address)

# Browse categories and drill into one
category = client.categories.list(limit=1).first()
if category:
    for product in category.products.list(limit=3):
        print(product.name, product.brand, product.price_per_unit)

# Search products by keyword
item = client.productsummaries.search(query="latte", limit=1).first()
if item:
    # Navigate from summary to full detail
    detail = item.details()
    print(detail.title, detail.base_price, detail.net_quantity_um)

# Direct product lookup by slug with error handling
try:
    product = client.products.get(slug="percorso-qualita-banane-cat-i-conad--50010977")
    print(product.title, product.brand, product.bassi_fissi)
except ProductNotFound as exc:
    print(f"Product gone: {exc.slug}")

print("exercised: stores.list / categories.list / category.products.list / productsummaries.search / details / products.get")
All endpoints · 5 totalmissing one? ·

Retrieve all Conad stores operating in a given Italian province. Each store entry carries the store format name and full street address. The province slug corresponds to the Italian city/province name in lowercase.

Input
ParamTypeDescription
provincerequiredstringProvince slug in lowercase Italian (e.g., 'milano', 'roma', 'torino', 'firenze')
Response
{
  "type": "object",
  "fields": {
    "stores": "array of store objects each with 'name' and 'address' strings",
    "province": "string, the province slug that was queried"
  },
  "sample": {
    "data": {
      "stores": [
        {
          "name": "Conad",
          "address": "VIA FRANCESCO GONIN, 71, MILANO, 20147"
        },
        {
          "name": "Conad City",
          "address": "CORSO SAN GOTTARDO, 29, MILANO, 20136"
        }
      ],
      "province": "milano"
    },
    "status": "success"
  }
}

About the Conad API

Product Catalog

get_products_by_category accepts a category_slug (e.g., frutta-e-verdura--01) and an optional 0-based page integer. Each product object in the response includes code, name, brand, base_price, price_per_unit, net_quantity, net_quantity_um, image_url, and category_le (the category hierarchy label). The response also surfaces subcategories — an array of child category names and URLs — making it straightforward to traverse the full category tree. Total result count is returned when available. Note that base_price may be 0.00 if no store session context is active.

Product Search and Detail

search_products accepts a query string and returns up to 40 products per page with the same product fields as the category endpoint, plus a displayed_title field showing the page heading the site returns. Without a store session, results are returned alphabetically across the full catalog regardless of the query string. get_product_detail accepts a slug in the format product-name--product-code (e.g., percorso-qualita-banane-cat-i-conad--50010977) and returns full product detail including multiple images, a bassi_fissi boolean flag indicating participation in the "bassi e fissi" fixed-low-price promotion, and a formatted price string alongside the numeric base_price.

Categories and Store Coverage

get_categories requires no input and returns the complete category list from the site's sitemap — each entry includes a full url and a slug for use in downstream category or product queries. get_stores_by_province accepts a province slug such as milano or roma and returns an array of store objects, each with name and address strings. Province coverage maps to Conad's physical store network across Italy.

Reliability & maintenanceVerified

The Conad API is a managed, monitored endpoint for spesaonline.conad.it — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when spesaonline.conad.it 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 spesaonline.conad.it 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
13h ago
Latest check
5/5 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 comparing base_price and price_per_unit across Conad product categories.
  • Populate a product database with Conad SKUs, brand names, and images using get_products_by_category across all slugs from get_categories.
  • Map Conad store locations in a given Italian province using get_stores_by_province with name and address data.
  • Flag products participating in the 'bassi e fissi' promotion using the bassi_fissi field from get_product_detail.
  • Traverse the full category hierarchy by combining get_categories results with the subcategories array returned per category.
  • Index Conad product images and metadata for a grocery comparison or meal-planning application.
  • Monitor catalog breadth by querying total product counts across categories using the total field in paginated responses.
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 Conad offer an official public developer API for spesaonline.conad.it?+
Conad does not publish a public developer API or documentation for spesaonline.conad.it. This Parse API provides structured access to the same catalog and store data.
Why do some products show a price of 0.00?+
Conad's site associates pricing with a specific store selection. Without an active store context, base_price and price_per_unit fields may return 0.00 even though the product record itself — name, brand, image, unit quantity — is fully populated. get_product_detail may return a non-null formatted price string in some cases even when the numeric base_price is zero.
How does `search_products` behave without a store session?+
Without a store session, the endpoint returns the full product catalog sorted alphabetically regardless of the query string supplied. The displayed_title field reflects what the site returns as the page heading, which can help confirm what context the response was rendered under. Filtered, query-relevant results require a store session that is not currently supported by the API.
Does the API return stock availability or inventory levels?+
No inventory or stock availability fields are currently exposed. The product endpoints return catalog data — code, name, brand, price, unit quantity, and image. You can fork this API on Parse and revise it to add an endpoint targeting stock or availability data if that surface becomes accessible.
Is store hours data available from `get_stores_by_province`?+
The current endpoint returns name and address per store. Opening hours are not included in the response. You can fork this API on Parse and revise it to add a detail endpoint that retrieves hours for individual store pages.
Page content last updated . Spec covers 5 endpoints from spesaonline.conad.it.
Related APIs in Food DiningSee all →
coop.it API
Search and browse Coop Italy's product catalog across categories and subcategories to find detailed information about items, prices, and current offers. Discover product recommendations and get comprehensive details including availability and promotional deals to help you shop more efficiently.
carrefour.it API
Search and browse Carrefour Italy's product catalog across categories, view detailed product information, find nearby store locations, and discover current promotions all in one place. Explore online grocery selections and compare products by price, brand, and availability.
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.
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.
compraonline.alcampo.es API
Search and browse Alcampo's online product catalog, view detailed product information, explore categories, check current promotions, and find nearby store locations across Spain. Access real-time data from Alcampo's online shopping platform to discover products, compare prices, and locate physical stores.
carrefour.fr API
carrefour.fr API
kaufland.de API
Search for current deals and discounts at Kaufland Germany stores, viewing detailed pricing information and offer validity periods. Find nearby store locations and browse the latest promotional products all in one place.
gazetkowo.pl API
Browse promotional products and current retailer leaflets from Polish stores to find the best deals and offers. Search for specific products, view store details, and discover the latest promotional flyers all in one place.