Discover/Metro Cc API
live

Metro Cc APIonline.metro-cc.ru

Search products, browse categories, and fetch product details from METRO Cash & Carry Russia. Get prices, brands, SKUs, and availability in structured JSON.

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

What is the Metro Cc API?

This API exposes 3 endpoints for querying the METRO Cash & Carry Russia online store, returning structured product data across search, category browsing, and individual product lookup. The search_products endpoint alone surfaces up to 9 fields per product — including SKU, brand, country of origin, price in rubles, and availability — for any Russian-language keyword query across the full catalog.

Try it
Maximum number of products to return
Search keyword in Russian (e.g. 'молоко', 'кофе', 'сыр')
api.parse.bot/scraper/ba9addab-532a-49fd-b208-eb610b8ff6c0/<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/ba9addab-532a-49fd-b208-eb610b8ff6c0/search_products?limit=10&query=%D0%BC%D0%BE%D0%BB%D0%BE%D0%BA%D0%BE' \
  -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 online-metro-cc-ru-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.

from parse_apis.metro_cc_online_store_api import Metro, Product, Category

metro = Metro()

# Search for dairy products
for product in metro.products.search(query="молоко"):
    print(product.name, product.price, product.brand, product.country)

# Get detailed product info by slug
detail = metro.products.get(slug="moloko-prostokvashino-bezlaktoznoye-ultrapasterizovannoye-1-5-970ml-84771")
print(detail.sku, detail.name, detail.price, detail.unit)

# Browse all categories
for category in metro.categories.list():
    print(category.id, category.name, category.slug)
    for child in category.children:
        print(child.name, child.parent_id)
All endpoints · 3 totalmissing one? ·

Full-text search over METRO Cash & Carry product catalog by keyword. Returns matching products with price, brand, country of origin, product type, and availability. Paginates internally up to 5 pages to fill the requested limit. Only returns products whose names contain the query string.

Input
ParamTypeDescription
limitintegerMaximum number of products to return
queryrequiredstringSearch keyword in Russian (e.g. 'молоко', 'кофе', 'сыр')
Response
{
  "type": "object",
  "fields": {
    "query": "string - the search query echoed back",
    "products": "array of product objects with sku, name, brand, country, product_type, unit, price, availability, url",
    "total_found": "integer - total matching products on the site"
  },
  "sample": {
    "data": {
      "query": "молоко",
      "products": [
        {
          "sku": "113309",
          "url": "https://online.metro-cc.ru/products/moloko-parmalat-ultrapasterizovannoye-3-5-1l",
          "name": "Молоко Parmalat ультрапастеризованное 3.5%, 1л",
          "unit": "шт",
          "brand": "PARMALAT",
          "price": 142,
          "country": "Россия",
          "availability": true,
          "product_type": "Молоко"
        }
      ],
      "total_found": 288
    },
    "status": "success"
  }
}

About the Metro Cc API

Endpoints Overview

The API covers three operations against the METRO Cash & Carry Russia catalog. search_products accepts a required query parameter in Russian (e.g. молоко, кофе) and an optional limit integer, then returns a products array alongside a total_found count. Each product object includes sku, name, brand, country, product_type, unit, price, availability, and a direct url. The endpoint paginates internally across up to 5 pages to satisfy the requested limit.

Category Tree

get_categories takes no inputs and returns the full hierarchical category tree up to 3 levels deep. Each node carries an id, name, slug, parent_id, and a nested children array. This is useful for mapping the catalog structure before running targeted searches or building category-aware navigation.

Product Detail Lookup

get_product_details fetches a single product by its URL slug (e.g. moloko-prostokvashino-bezlaktoznoye-ultrapasterizovannoye-1-5-970ml-84771). The response returns the same core attribute set: sku, name, unit, brand, price, country, and product_type. Slugs can be obtained from the url field returned by search_products or by browsing the category tree.

Reliability & maintenanceVerified

The Metro Cc API is a managed, monitored endpoint for online.metro-cc.ru — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when online.metro-cc.ru 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 online.metro-cc.ru 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
2d 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
  • Track price changes for specific SKUs in the METRO Russia food catalog over time using get_product_details.
  • Build a country-of-origin filter for imported goods by extracting the country field from search_products results.
  • Map the full METRO product taxonomy for catalog analysis using the 3-level hierarchy from get_categories.
  • Compare brand availability across product categories by combining get_categories slugs with search_products queries.
  • Monitor stock availability for wholesale procurement by polling the availability field on key product SKUs.
  • Aggregate product type distributions across a keyword set using the product_type field from bulk search results.
  • Resolve product slugs to full attribute records for enriching an existing product database via get_product_details.
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 METRO Cash & Carry Russia offer an official developer API for online.metro-cc.ru?+
METRO Cash & Carry Russia does not publish a public developer API for its online store. There is no documented REST or GraphQL API listed on the metro-cc.ru developer portal or in public documentation.
What does `search_products` return, and does it filter by category or price range?+
search_products returns products whose names contain the query string, with fields including sku, name, brand, country, product_type, unit, price, availability, and url. It accepts a query string and an optional limit. Filtering by category or price range is not currently supported — the endpoint searches across the full catalog. You can fork this API on Parse and revise it to add category-scoped or price-range filtering.
Are customer reviews or ratings available through this API?+
Not currently. The API covers product attributes, pricing, availability, and catalog structure. Customer reviews and ratings are not exposed in any endpoint response. You can fork this API on Parse and revise it to add a reviews endpoint if that data is accessible on the product page.
How fresh is the pricing data, and does it reflect member or bulk pricing?+
The price field reflects the listed price in rubles at the time of the request. METRO stores typically display prices to registered members, and the API returns the price visible on the product page. Whether this reflects member-exclusive or bulk-tier pricing depends on how the product page presents it — the API does not expose separate price tiers or membership-specific rates.
Can I retrieve a product using its SKU directly rather than its URL slug?+
get_product_details requires a URL slug as input (e.g. moloko-prostokvashino-bezlaktoznoye-ultrapasterizovannoye-1-5-970ml-84771). Direct lookup by SKU is not currently supported. The sku field is returned in both search_products and get_product_details responses, but you need to obtain the slug first — typically from the url field in a search_products result. You can fork this API on Parse and revise it to add SKU-based resolution.
Page content last updated . Spec covers 3 endpoints from online.metro-cc.ru.
Related APIs in EcommerceSee all →
megamarket.ru API
Search and browse products across MegaMarket.ru's catalog, view detailed product information with customer reviews, and explore catalog categories to discover items available on Sber's Russian marketplace. Get real-time search suggestions and product recommendations to help you find exactly what you're looking for.
metro.de API
Search and retrieve product information from Metro Germany's Online Marketplace and Wholesale Store, including detailed product data and refrigeration subcategories. Find exactly what you're looking for across both retail channels with comprehensive product listings and specifications.
perekrestok.ru API
Browse Perekrestok.ru's grocery catalog, search for products, view detailed information and customer reviews, and explore items organized by category. Get instant access to product details, pricing, and shopper feedback to help you find exactly what you need from Russia's leading supermarket chain.
catalog.onliner.by API
Search and compare products from Onliner.by's catalog with access to real-time prices, detailed product information, customer reviews, and historical price trends. Browse categories, get autocomplete suggestions, and view all available offers for any product to make informed purchasing decisions.
migros.com.tr API
Search and browse Migros supermarket products by category, view detailed product information including pricing, and discover current discounts and promotional campaigns. Easily find specific items and explore what's on sale at Migros.com.tr.
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.
krasnoeibeloe.ru API
Search for products from Krasnoe & Beloe, locate nearby shops across different cities, and check real-time stock availability to find what you need. View detailed product information and discover which stores have items in stock so you can plan your shopping trip efficiently.
5ka.ru API
Search and browse Pyaterochka's complete product catalog with real-time pricing, nutritional details, and special offers across all store locations. Find categories, compare products, and access the latest deals from Russia's popular grocery chain.