Discover/Cropp API
live

Cropp APIcropp.com

Access Cropp Hungary's clothing catalog via API. Search products, browse categories, get pricing, sizes, stock status, and active promotion codes.

Endpoint health
verified 4d ago
list_products_by_category
get_homepage
list_categories
search_products
get_active_promotions
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Cropp API?

The Cropp Hungary API covers the full shopping experience across 6 endpoints, returning product listings, category trees, per-size stock status, and live promotion codes from cropp.com/hu. Use search_products to query the catalog by keyword with pagination, get_product_details to retrieve material composition and per-variant inventory, and get_active_promotions to pull current discount codes in one call.

Try it

No input parameters required.

api.parse.bot/scraper/623f3705-ffac-47c7-9714-2917d2e5a75f/<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/623f3705-ffac-47c7-9714-2917d2e5a75f/get_homepage' \
  -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 cropp-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: Cropp Hungary SDK — browse categories, search products, get details."""
from parse_apis.cropp_api import Cropp, CategoryPath, ProductNotFound

client = Cropp()

# List all product categories
for cat in client.categories.list(limit=5):
    print(cat.name, cat.path)

# Search for polo shirts — bounded iteration
for product in client.products.search(query="polo", limit=3):
    print(product.name, product.price, product.currency, product.is_sale)

# Browse women's category using the enum
for product in client.products.list_by_category(category_path=CategoryPath.WOMEN, limit=3):
    print(product.name, product.sku, product.regular_price)

# Drill into one product for full details (sizes, material, images)
item = client.products.search(query="farmer", limit=1).first()
if item:
    detail = item.details()
    print(detail.name, detail.material, detail.color)
    for size in detail.sizes:
        print(size.name, size.in_stock, size.quantity)

# Typed error handling: attempt to fetch a non-existent product
try:
    bogus = client.product(sku="nonexistent-sku-000").details()
except ProductNotFound as exc:
    print(f"Product not found: {exc.product_slug}")

# Get current active promotions
promos = client.promotionlists.get()
print(promos.country)
for p in promos.promotions:
    print(p.code, p.text)

print("exercised: categories.list / products.search / products.list_by_category / product.details / promotionlists.get")
All endpoints · 6 totalmissing one? ·

Retrieve homepage data including active promotions, discount codes, and banner images. Returns the current site title, promotional codes with descriptions, and banner image URLs from the Cropp Hungary homepage.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "url": "string, the homepage URL",
    "title": "string, site title",
    "banners": "array of objects each with an 'image' URL string",
    "promotions": "array of objects each with 'code', 'text', and 'type' strings"
  },
  "sample": {
    "data": {
      "url": "https://www.cropp.com/hu/hu/",
      "title": "Cropp Hungary",
      "banners": [
        {
          "image": "https://media.cropp.com/media/x/w/t/b34262fcf9-allheadertshirtsweek24desktop.jpg?impolicy=banner"
        }
      ],
      "promotions": [
        {
          "code": "SUN25",
          "text": "-25% kedvezmény egyes termékekre legalább 2 termék vásárlása esetén 03.06 - 23.06",
          "type": "STANDARD_COUPON"
        }
      ]
    },
    "status": "success"
  }
}

About the Cropp API

Product Search and Category Browsing

The search_products endpoint accepts a required query string (Hungarian or English keywords such as polo or farmer) plus optional page (0-indexed) and limit (1–100) parameters. It returns a paginated result set with total, pages, and a products array. Each product object carries id, name, sku, price, regular_price, currency (HUF), url, image, sizes, color, and an is_sale flag. The list_products_by_category endpoint mirrors this shape but filters by category_path — accepted values are noi (Women), ferfi (Men), learazas (Sale), and utos-ujdonsag (New arrivals).

Product Detail and Inventory

get_product_details accepts a product_slug — the URL slug from the url field of any search or category result, or a full product URL. The response adds fields not present in listing results: a material string with fabric composition, an images array of high-resolution URLs, and a sizes array where each size object includes name, in_stock, quantity, and its own sku. This makes it the right endpoint when you need to check per-size availability rather than just the top-level availability flag.

Promotions and Homepage Data

get_active_promotions returns a country field fixed to HU and a promotions array where each entry has a code, text, and type string — suitable for surfacing current discount codes without loading the full homepage. get_homepage covers the same promotion data but also includes the site title and a banners array of image URLs from the current homepage carousel. list_categories returns a static list of top-level categories with name, id, and path fields, useful for building navigation or validating inputs to list_products_by_category.

Reliability & maintenanceVerified

The Cropp API is a managed, monitored endpoint for cropp.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when cropp.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 cropp.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
6/6 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
  • Monitor Cropp Hungary sale prices and is_sale flags to track markdowns over time
  • Build a size-availability checker using per-variant quantity and in_stock fields from get_product_details
  • Aggregate active discount codes from get_active_promotions for a coupon aggregator site
  • Populate a product feed with names, prices, images, and color details from search_products
  • Sync the Women's or Men's category inventory using list_products_by_category with the noi or ferfi path
  • Compare price vs regular_price across the catalog to identify the deepest discounts
  • Display current homepage banner images and promotions in a third-party storefront integration
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 Cropp have an official public developer API?+
Cropp does not publish a public developer API or documented REST interface for third-party use. This Parse API provides structured access to the Hungarian store's product and promotion data.
What does get_product_details return that listing endpoints don't?+
The listing endpoints (search_products and list_products_by_category) return a single sizes array and an is_sale flag. get_product_details adds per-size quantity and individual size sku codes, a material string with fabric composition, and a full images array with multiple high-resolution image URLs.
Are product reviews or ratings available through this API?+
Not currently. The API covers product listings, pricing, stock status, material details, and promotions. You can fork it on Parse and revise to add a review-fetching endpoint if that data is accessible on the product page.
Does the API cover Cropp stores in other countries besides Hungary?+
The API is scoped to the Hungarian store (cropp.com/hu). The country field in get_active_promotions is fixed to HU, and category paths and pricing are Hungary-specific. You can fork it on Parse and revise the base URL and locale parameters to target another regional Cropp storefront.
How does pagination work in search_products and list_products_by_category?+
Both endpoints use 0-indexed page numbers. The response includes page (current index), pages (total page count), and total (total matching items). Set limit between 1 and 100 to control results per page. Request page 0 first, then iterate up to pages - 1.
Page content last updated . Spec covers 6 endpoints from cropp.com.
Related APIs in EcommerceSee all →
allegro.pl API
Search listings, browse categories, retrieve product details, and get autocomplete suggestions from Allegro.pl, Poland's largest e-commerce marketplace.
zalando.it API
Browse and extract product data from Zalando Italy, including search results, category listings, and full product detail pages.
cos.com API
Search and browse COS fashion products by name or category to instantly access pricing, product images, and direct links to items. Retrieve detailed information about specific products including descriptions, availability, and pricing to compare styles and make informed shopping decisions.
coppel.com API
Search and browse Coppel's product catalog by keyword to find items with prices, images, and detailed product information, with flexible sorting and pagination options. Get real-time access to Mexico's largest department store inventory to compare products and prices effortlessly.
stylishop.com API
Browse and search stylishop.com's complete fashion catalog, including products, categories, brands, reviews, and trending data to discover new arrivals and sale items. Get product details, size guides, autocomplete suggestions, and trending search insights to enhance your shopping experience.
abercrombie.com API
Search and browse Abercrombie & Fitch products across categories, new arrivals, and clearance items while retrieving detailed product information like pricing and availability. Access curated collections and find exactly what you're looking for with powerful search capabilities.
cel.ro API
cel.ro API
skroutz.gr API
Search and compare products across Greek retailers with real-time pricing, store availability, and historical price trends from Skroutz.gr. Browse categories, view detailed product information, and read customer reviews to find the best deals on any item.