Discover/Kabum API
live

Kabum APIkabum.com.br

Access KaBuM! product listings, prices, specs, categories, and user reviews via API. Search Brazil's top electronics retailer with 6 endpoints.

Endpoint health
verified 5d ago
get_product_reviews
get_product_details
search_products
get_departments_and_categories
get_category_products
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the Kabum API?

The KaBuM! API provides 6 endpoints for searching and browsing Brazil's largest electronics retailer, returning structured product data including BRL prices, discount percentages, technical specifications, and customer reviews. Starting with search_products, you can query by keyword and sort by price or popularity, then drill into any result with get_product_details to retrieve full specs, brand info, and payment-aware pricing objects.

Try it
Page number for pagination.
Sort order for results.
Search keyword (e.g. 'notebook', 'RTX 4060').
Number of items per page.
api.parse.bot/scraper/5cc2492d-6abb-44cd-bf2d-b94a65173040/<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/5cc2492d-6abb-44cd-bf2d-b94a65173040/search_products?page=1&sort=most_searched&query=notebook&page_size=20' \
  -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 kabum-com-br-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.kabum__api import Kabum, Sort, Product, Category, ProductDetail, Review, CatalogProduct

# Initialize the client
kabum = Kabum()

# Search for products using the Sort enum
for product in kabum.products.search(query="notebook", sort=Sort.PRICE_ASC, limit=5):
    print(product.name, product.price, product.available, product.seller)

    # Navigate from product summary to full details
    detail = product.details()
    print(detail.title, detail.category, detail.seller_name)
    print(detail.prices.price_with_discount, detail.prices.discount_percentage)
    print(detail.rating.score, detail.rating.count)
    print(detail.brands.name)

    # Walk sub-resource: reviews
    for review in product.reviews.list(limit=3):
        print(review.customer_name, review.score, review.review_title)

# List all categories
for cat in kabum.categories.list(limit=5):
    print(cat.nome, cat.amigavel, cat.count_filhos)

    # Browse products in a category
    for p in cat.products(limit=3):
        print(p.name, p.price, p.discount_percentage)

# Search the full catalog with metadata
for result in kabum.catalogproducts.search(query="RTX 4060", limit=3):
    print(result.id, result.type)
    print(result.attributes.title, result.attributes.price, result.attributes.available)
All endpoints · 6 totalmissing one? ·

Full-text search over KaBuM!'s product catalog by keyword. Returns paginated product summaries including prices, availability, ratings, and seller info. Paginates via page number. Each product carries an id and slug usable for get_product_details.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order for results.
queryrequiredstringSearch keyword (e.g. 'notebook', 'RTX 4060').
page_sizeintegerNumber of items per page.
Response
{
  "type": "object",
  "fields": {
    "meta": "object with pagination info (cursor, number, size, is_current_page)",
    "products": "array of product summaries with id, name, price, old_price, discount_percentage, available, manufacturer, url, image, rating_score, rating_count, is_marketplace, seller",
    "total_items": "integer total number of matching products"
  },
  "sample": {
    "data": {
      "meta": {
        "size": 5,
        "cursor": "",
        "number": 1,
        "is_current_page": true
      },
      "products": [
        {
          "id": 1037468,
          "url": "https://www.kabum.com.br/produto/1037468/notebook-lenovo-ideapad-slim-3-amd-ryzen-5-7535hs-8gb-amd-radeon-graphics-ssd-512gb-15-3-wuxga-1920x1200-linux-83mms00300",
          "name": "Notebook Lenovo IdeaPad Slim 3 AMD Ryzen 5 7535HS, 8GB, AMD Radeon Graphics, SSD 512GB, 15.3\" WUXGA 1920x1200, Linux - 83MMS00300",
          "image": "https://images.kabum.com.br/produtos/fotos/1037468/notebook-lenovo-ideapad-slim-3-amd-ryzen-5-7535hs-8gb-amd-radeon-graphics-ssd-512gb-15-3-wuxga-1920x1200-linux-83mms00300_1780426518_g.jpg",
          "price": 4940.98,
          "seller": "KaBuM!",
          "available": true,
          "old_price": 0,
          "manufacturer": "Lenovo",
          "rating_count": 0,
          "rating_score": 0,
          "is_marketplace": false,
          "discount_percentage": 0
        }
      ],
      "total_items": 10000
    },
    "status": "success"
  }
}

About the Kabum API

Product Search and Catalog Browsing

The search_products endpoint accepts a query string (e.g. 'RTX 4060' or 'notebook') plus optional page, page_size, and sort parameters ('most_searched', 'price_asc', 'price_desc'). Results include an array of product summaries — each with id, name, price, old_price, discount_percentage, available, manufacturer, url, image, and rating_score — alongside a meta pagination object and total_items count. For browsing by department, get_departments_and_categories returns the full category tree with codigo, amigavel (slug), nome, and imagem fields. Pass the amigavel slug into get_category_products to page through any category's listings.

Deep Product Details

get_product_details requires both a numeric product_id and the URL slug, both available from search or category results. The response includes prices (an object with oldPrice, priceWithDiscount, price, discountPercentage), medias (an array of image objects at multiple resolutions), brands (with brand id, name, image, link), about (an HTML string summarizing key features), category breadcrumb, sellerName, and a rating object with score and count. This is the most data-dense endpoint in the API.

Reviews and Search Suggestions

get_product_reviews takes a product_id and returns paginated review objects — each with review_id, customer_name, score, review_date, review_title, description, total_likes, and any attached midia — plus aggregate average_score and total_reviews at the top level. get_search_suggestions accepts a query and returns a richer catalog payload: full product attributes, filter metadata, breadcrumb, SEO fields, promotion flags, and links for first/self/last/next pagination — useful when you need filter facets alongside results.

Reliability & maintenanceVerified

The Kabum API is a managed, monitored endpoint for kabum.com.br — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when kabum.com.br 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 kabum.com.br 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
5d 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
  • Track BRL price changes and discount_percentage for specific products over time using search_products or get_product_details.
  • Build a price comparison tool for Brazilian electronics by querying multiple keywords and comparing priceWithDiscount across results.
  • Aggregate customer sentiment by collecting score, description, and total_likes from get_product_reviews across competing products.
  • Populate a product catalog with KaBuM! data by iterating get_category_products across all slugs from get_departments_and_categories.
  • Monitor stock availability using the available field returned in search_products and get_category_products for specific SKUs.
  • Extract brand and manufacturer data (brands object, manufacturer attribute) to analyze which vendors dominate specific categories.
  • Use get_search_suggestions filter metadata to understand how KaBuM! facets a category — useful for replicating their taxonomy in a third-party app.
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 KaBuM! have an official public developer API?+
KaBuM! does not publish a public developer API or API documentation for third-party developers. This Parse API provides structured access to KaBuM! catalog data without requiring any affiliation or agreement with KaBuM!.
What does `get_product_details` return beyond the price?+
get_product_details returns the prices object (covering oldPrice, priceWithDiscount, price, and discountPercentage), a medias array with product images at multiple resolutions, the brands object with brand name and image, an about HTML string with key feature highlights, a category breadcrumb string, sellerName, and a rating object with score and count. Both product_id and slug are required inputs — you can get both from search_products results.
Does the API cover seller ratings or storefront-level data beyond `sellerName`?+
Not currently. The API returns sellerName within get_product_details but does not expose seller profiles, seller ratings, or full third-party seller listings separately. You can fork this API on Parse and revise it to add a seller-focused endpoint if your use case requires that data.
How does pagination work across endpoints?+
search_products and get_category_products both accept page and page_size parameters and return a meta object with cursor, number, size, is_current_page, and a total_items integer. get_product_reviews uses page and limit and returns total_pages_count and total_items_count in its meta. get_search_suggestions returns links with first, self, last, and next URLs for cursor-style navigation.
Does the API return product specs like RAM, storage, or CPU for electronics?+
Technical specifications are returned in the about field of get_product_details as an HTML string — they are not broken out into structured key-value spec fields. If you need parsed spec attributes (e.g. RAM, storage, GPU model as discrete fields), the current response shape does not provide them. You can fork this API on Parse and revise it to add structured spec parsing for the product detail endpoint.
Page content last updated . Spec covers 6 endpoints from kabum.com.br.
Related APIs in EcommerceSee all →
pichau.com.br API
Search for electronics products on Pichau.com.br by keyword and browse paginated results to find exactly what you're looking for. Get detailed product information including specifications, pricing, and availability for any item in their Brazilian electronics catalog.
cea.com.br API
Search and browse C&A Brazil's product catalog across categories and subcategories, view detailed product information including prices and specifications, and read customer reviews to help with your shopping decisions. Find exactly what you're looking for with powerful product search functionality backed by the complete cea.com.br inventory.
amazon.com.br API
Search and browse products on Amazon Brazil (amazon.com.br). Retrieve product details, review summaries, bestseller rankings, current deals, and price analytics.
shopee.com.br API
Search for products on Shopee Brazil (shopee.com.br) and retrieve detailed information including item specifications, customer reviews, and seller profiles. Browse the complete category tree to discover products across all sections of the marketplace, and explore official shops, flash sales, and search suggestions.
emag.ro API
Access product data from eMAG.ro, Romania's largest online retailer. Search by keyword, browse categories, retrieve product details and reviews, and look up seller information.
natura.com.br API
Browse Natura's complete product catalog, search for items by category or keyword, and retrieve detailed product information including prices, descriptions, ingredients, and customer reviews. Supports category navigation, faceted filtering, and paginated search results.
netshoes.com API
Search and browse products on Netshoes.com.br by keyword or category. Retrieve detailed product information including specifications, pricing, available sizes and colors, customer reviews, and delivery estimates by ZIP code.
pccomponentes.com API
Search and browse PC components across categories and retrieve detailed product information including technical specifications, pricing, availability, and customer reviews. Ideal for comparing hardware options across processors, graphics cards, laptops, and more.