cea.com.br APIcea.com.br ↗
Access C&A Brazil's product catalog via API. Search products, browse categories, get SKU details, prices, and customer reviews from cea.com.br.
curl -X GET 'https://api.parse.bot/scraper/910c4e62-0257-4468-a7c6-e63d2ef02a82/search_products?page=0&limit=3&query=camiseta' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products by keyword on C&A Brazil. Returns paginated Algolia search results including product name, price, availability, images, and category information.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number (0-indexed) |
| limit | integer | Number of results per page |
| queryrequired | string | Search keyword (e.g. 'camiseta', 'calca', 'vestido') |
{
"type": "object",
"fields": {
"data": "object containing algoliaProducts with hits array, nbHits total count, nbPages, and facets"
},
"sample": {
"data": {
"data": {
"algoliaProducts": {
"hits": [
{
"Link": "camiseta-classic-feminina-de-algodao-peruano-interlock-marrom-1095202-marrom_e3",
"Name": "camiseta classic feminina de algodão peruano interlock marrom",
"Price": 119.99,
"Images": [
"https://cea.vtexassets.com/arquivos/ids/59318487/Foto-0.jpg"
],
"OldPrice": 119.99,
"Available": true,
"Category1": "Moda Feminina",
"Category2": "Roupas",
"Category3": "Blusas",
"Reference": "1095202-marrom_e3",
"SpotPrice": 119.99,
"productId": "4533647",
"item_brand": "C&A"
}
],
"nbHits": 4196,
"nbPages": 50
}
}
},
"status": "success"
}
}About the cea.com.br API
The cea.com.br API gives developers access to C&A Brazil's fashion catalog through 6 endpoints covering product search, category browsing, SKU-level detail, and customer reviews. The search_products endpoint accepts keyword queries like 'camiseta' or 'vestido' and returns paginated hits with prices, images, availability, and category facets. Product IDs returned by search feed directly into get_product_details and get_product_reviews for deeper data retrieval.
Search and Category Browsing
The search_products endpoint accepts a required query string and optional page (0-indexed) and limit parameters. It returns an algoliaProducts object containing a hits array, total result count (nbHits), page count (nbPages), and facets for filtering. The same result shape is shared by get_category_products and get_subcategory_products, which filter by category_slug (e.g. moda-feminina, moda-masculina, infantil) and optionally a subcategory_slug (e.g. roupas, calcados, moda-intima).
Product Details and SKU Data
get_product_details accepts a numeric product_id — available from search or category results — and returns a detailed product object. Key fields include productName, brand, description, categories (array of category path strings), and items, which is an array of SKU objects each containing size options, image URLs, prices, and availability status. This makes it suitable for building size-aware product displays or price monitoring tools.
Reviews and Category Hierarchy
get_product_reviews returns up to 50 recent positive customer reviews per product. Each review in the opinions.items array includes id, opinion text, rate, created_at timestamp, user name, and any attached review photos. get_categories requires no input and returns the full category tree up to 3 levels deep, with each node exposing id, name, url, hasChildren, and a children array — useful for building navigation menus or systematically walking the catalog.
- Track C&A Brazil clothing prices across categories for competitive retail analysis using
get_category_productswith paginated results. - Build a size-aware product feed by extracting the
itemsSKU array fromget_product_detailswith per-size availability flags. - Aggregate customer sentiment for Brazilian fashion products using
rateandopinionfields fromget_product_reviews. - Generate a full site navigation map using the 3-level category tree returned by
get_categories. - Monitor new arrivals by querying
search_productsorget_subcategory_productsand comparingnbHitsover time. - Populate a product comparison tool with brand, description, images, and price data from
get_product_details. - Index C&A Brazil's catalog by subcategory using
get_subcategory_productswith slugs likeacessoriosorcalcados.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does C&A Brazil offer an official developer API?+
What exactly does `get_product_details` return beyond the basic product name?+
brand, description, categories (an array of category path strings), productId, productName, and an items array of SKU objects. Each SKU object includes size options, image URLs, pricing, and availability — giving you the per-size inventory breakdown rather than just a single product-level price.Are reviews for all products available, and are negative reviews included?+
get_product_reviews returns up to 50 reviews per product sorted by most recent, and the endpoint currently returns positive reviews. Negative or filtered reviews are not currently exposed. You can fork this API on Parse and revise it to add an endpoint targeting other review categories if that data becomes accessible.Does the API cover product availability across physical C&A store locations?+
items array in get_product_details, but store-level stock by physical location is not exposed. You can fork this API on Parse and revise it to add a store-inventory endpoint if that data surface exists.How does pagination work across the search and category endpoints?+
search_products, get_category_products, and get_subcategory_products — use a 0-indexed page parameter alongside a limit parameter. The response includes nbHits (total matching products) and nbPages (total pages at the requested limit), so you can calculate traversal without extra requests.