Discover/Pichau API
live

Pichau APIpichau.com.br

Search Pichau.com.br products by keyword and retrieve detailed pricing, stock status, categories, and images via two structured endpoints.

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

What is the Pichau API?

The Pichau API provides two endpoints to access product data from Pichau.com.br, a Brazilian electronics and hardware retailer. search_products returns up to 36 items per page with pricing, brand, categories, and stock status for any keyword query. get_product_details returns a full product record including PIX discount pricing, installment breakdown, open-box flag, and category path — covering 12 distinct fields per product.

Try it
Page number (1-based)
Search query keyword
api.parse.bot/scraper/6fb9c2c9-3331-417f-badd-03d7f06152c9/<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/6fb9c2c9-3331-417f-badd-03d7f06152c9/search_products?page=1&query=monitor' \
  -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 pichau-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.pichau_products_api import Pichau, Product, ProductNotFound

pichau = Pichau()

# Search for products by keyword
for product in pichau.products.search(query="monitor", limit=5):
    print(product.name, product.sku, product.stock_status)
    print(product.price.pix_price, product.price.current_price)

# Get full details for a specific product by url_key
detail = pichau.products.get(url_key="mesa-de-colo-para-notebook-fortrek-lapdesk-preto-84989")
print(detail.name, detail.brand, detail.is_openbox)
print(detail.price.pix_price, detail.price.pix_discount_percent)
for cat in detail.categories:
    print(cat.name, cat.path)

# Refresh an already-fetched product
refreshed = detail.refresh()
print(refreshed.name, refreshed.url)
All endpoints · 2 totalmissing one? ·

Full-text search over Pichau product catalog by keyword. Returns up to 36 products per page with pricing (PIX discount, installments), availability, brand, categories, and product URL keys for drill-down. Paginates via integer page counter. An unmatched query returns zero results (not an error).

Input
ParamTypeDescription
pageintegerPage number (1-based)
querystringSearch query keyword
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "query": "string, the search query used",
    "products": "array of product objects with id, sku, name, url, url_key, brand, price, categories, is_openbox, stock_status, image_url",
    "total_count": "integer, total number of matching products",
    "total_pages": "integer, total number of pages available",
    "products_on_page": "integer, number of products returned on this page"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "monitor",
      "products": [
        {
          "id": 65107,
          "sku": "22U403A-B",
          "url": "https://www.pichau.com.br/monitor-lg-home-office-22-pol-va-fhd-5ms-120hz-hdmi-22u403a-b",
          "name": "Monitor LG Home Office, 22 Pol, VA, FHD, 5ms, 120Hz, HDMI, 22U403A-B",
          "brand": "LG",
          "price": {
            "pix_price": 559.99,
            "current_price": 658.81,
            "special_price": 658.81,
            "original_price": 764.69,
            "max_installments": 12,
            "installment_price": 54.9,
            "pix_discount_percent": 15
          },
          "url_key": "monitor-lg-home-office-22-pol-va-fhd-5ms-120hz-hdmi-22u403a-b",
          "image_url": null,
          "categories": [
            {
              "name": "Monitores",
              "path": "monitores"
            },
            {
              "name": "Monitor Casa e Escritório",
              "path": "monitores/monitor-casa-e-escritorio"
            }
          ],
          "is_openbox": false,
          "stock_status": "IN_STOCK"
        }
      ],
      "total_count": 1065,
      "total_pages": 30,
      "products_on_page": 36
    },
    "status": "success"
  }
}

About the Pichau API

Searching Products

The search_products endpoint accepts a query string and an optional page integer (1-based). Each response includes total_count, total_pages, and products_on_page to support pagination, along with an array of product objects. Each product object carries id, sku, name, url, url_key, brand, price, categories, is_openbox, stock_status, and image_url. The url_key field is the slug used to fetch full product details.

Product Details

get_product_details takes a single required parameter, url_key, which maps directly to the url_key values returned in search results (e.g. samsung-odyssey-g3-monitor-24-f24g35tfwl). The response expands the price field into structured sub-fields: pix_price, pix_discount_percent, original_price, current_price, special_price, max_installments, and installment_price. This makes it straightforward to display both cash and installment pricing as Pichau presents them on-site. The categories array includes each category's name and path.

Coverage and Limitations

Both endpoints cover Pichau's Brazilian electronics catalog including CPUs, GPUs, monitors, peripherals, and components. The is_openbox boolean flag distinguishes refurbished open-box listings from new stock. Product descriptions, full specification sheets, and customer reviews are not returned by either endpoint — only the fields listed in the response schemas above.

Reliability & maintenanceVerified

The Pichau API is a managed, monitored endpoint for pichau.com.br — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when pichau.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 pichau.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
2d ago
Latest check
2/2 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 on specific products by polling get_product_details and comparing current_price and pix_price over time
  • Build a GPU availability monitor using search_products with hardware-specific queries and the stock_status field
  • Compare PIX cash pricing against installment pricing using pix_price, pix_discount_percent, and installment_price from product detail responses
  • Identify open-box deals by filtering search_products results where is_openbox is true
  • Aggregate Pichau category data by collecting the categories[*].path fields across paginated search results
  • Populate a Brazilian electronics comparison tool with brand, SKU, and pricing data from both endpoints
  • Monitor total inventory breadth for a product segment using total_count returned from keyword searches
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 Pichau.com.br have an official public developer API?+
Pichau does not publish a public developer API or documented data feed for third-party use. This Parse API provides structured access to their product catalog.
What pricing fields does `get_product_details` return, and how do they differ?+
get_product_details returns a price object with seven sub-fields: original_price (list price before any discount), current_price (active selling price), special_price (promotional price when applicable), pix_price (cash price paid via PIX), pix_discount_percent (percentage reduction for PIX payment), max_installments (maximum number of installment periods), and installment_price (per-period amount). This lets you display both the installment and cash-discount pricing that Pichau shows on product pages.
Does the API return product descriptions or technical specifications?+
Not currently. Both endpoints return identification, pricing, category, stock, and image fields, but not long-form product descriptions or spec sheets. You can fork this API on Parse and revise it to add those fields if Pichau exposes them on the product page.
How does pagination work in `search_products`?+
Each response includes total_count, total_pages, and products_on_page. Pass the page parameter (1-based integer) to iterate through results. Each page returns a maximum of 36 products. If page is omitted, the first page is returned by default.
Does the API cover customer reviews or seller ratings on Pichau?+
Not currently. The API covers product listings, pricing, stock status, and categories. You can fork it on Parse and revise to add a reviews endpoint if that data is needed.
Page content last updated . Spec covers 2 endpoints from pichau.com.br.
Related APIs in EcommerceSee all →
kabum.com.br API
Search and browse KaBuM!'s vast electronics catalog, get detailed product specifications and customer reviews, and explore categories and departments. Find exactly what you need with search suggestions and deep product information from Brazil's top electronics retailer.
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.
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.
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.
ripley.com API
Search for products across Ripley.cl's catalog and retrieve detailed information like prices, descriptions, and availability for any item. Perfect for comparing products, tracking pricing, or integrating Ripley's inventory into your own applications.
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.
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.
marisa.com.br API
Search and browse Marisa.com.br's fashion inventory to discover products by category, view detailed item information, and see what other shoppers are currently searching for. Access the complete category structure and identify trending products to stay updated on popular styles from this leading Brazilian fashion retailer.