Discover/netshoes.com API
live

netshoes.com APInetshoes.com

Access Netshoes.com.br product listings, details, reviews, and delivery estimates via API. Search by keyword or browse by category path.

Endpoints
5
Updated
14d ago
Try it
Page number for pagination
Search keyword (e.g. 'tenis', 'adidas running')
api.parse.bot/scraper/5dc525c9-09fc-479f-b88d-3e7e25d78043/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/5dc525c9-09fc-479f-b88d-3e7e25d78043/search_products?page=1&query=tenis' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for products by keyword on Netshoes. Returns paginated product listings. Note: single brand-name queries (e.g. 'nike') may be redirected by the site to a brand landing page and return upstream_error; use more specific queries (e.g. 'nike tenis') for reliable results.

Input
ParamTypeDescription
pageintegerPage number for pagination
queryrequiredstringSearch keyword (e.g. 'tenis', 'adidas running')
Response
{
  "type": "object",
  "fields": {
    "items": "array of product summaries with id, name, url, brand, price, oldPrice, discount, rating, reviewCount, image, isAvailable, department, productType, sizes",
    "total": "integer total number of matching products",
    "totalPages": "integer total number of pages",
    "currentPage": "integer current page number"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "FBA-0905-006",
          "url": "https://www.netshoes.com.br/p/tenis-adidas-ultimashow-20-masculino-FBA-0905-006",
          "name": "Tênis Adidas Ultimashow 2.0 Masculino",
          "brand": "Adidas",
          "image": "https://static.netshoes.com.br/produtos/tenis-adidas-ultimashow-20-masculino/06/FBA-0905-006/FBA-0905-006_zoom1.jpg",
          "price": 349.99,
          "sizes": [
            "37",
            "42",
            "41",
            "38",
            "39",
            "40"
          ],
          "rating": 4.71,
          "discount": null,
          "oldPrice": 349.99,
          "department": "Running",
          "isAvailable": true,
          "productType": "Tênis",
          "reviewCount": 1532
        }
      ],
      "total": 7744,
      "totalPages": 81,
      "currentPage": 1
    },
    "status": "success"
  }
}

About the netshoes.com API

The Netshoes API gives developers structured access to Netshoes.com.br product data across 5 endpoints, covering search, category browsing, full product details, customer reviews, and ZIP code address lookups. The get_product_details endpoint alone returns over 10 fields per SKU including price in BRL, size variants, color variants, and zoom-quality images — enough to build a product feed or price tracker without manual browsing.

Search and Category Browsing

The search_products endpoint accepts a query string and an optional page integer, returning paginated arrays of product summaries. Each item includes id, name, brand, price, oldPrice, discount, rating, reviewCount, image, isAvailable, and department. One practical note: single-word brand queries like nike may trigger a brand landing redirect on the site and return an upstream error; more specific queries like nike tenis return reliable paginated results. The get_product_listings_by_category endpoint takes a path parameter (e.g. /tenis/masculino) and returns the same product summary shape plus a filters array listing available refinements for that category.

Product Details and Variants

get_product_details takes a slug parameter — the product SKU code in ABC-1234-567 format — and returns the full record for that item. Response fields include sizes (each with size, sku, available, price), colors (each with color, slug, sku, available, image), a images array of zoom-resolution URLs, oldPrice, available, and department. Prices are denominated in BRL.

Reviews and Ratings

get_product_reviews retrieves customer review data for a given SKU. Reviews are aggregated across color variants of the same product line. The response includes a rating object with stars and average, the full reviews array (each entry carrying reviewId, rating, comments, name, userRecommends, photos, and createdAt), a histogram array with per-star vote counts and percentages, a surveys array of attribute-level ratings, summaryAI (an AI-generated review summary), numberOfReviews, and percentRecommended.

Delivery and Address Lookup

check_delivery_estimate accepts a sku and an 8-digit Brazilian zipcode (CEP). It returns an address object with postalCode, street, neighborhood, city, state, and ibgeCode. A note field in the response provides context about the scope of the estimate. This endpoint is useful for validating Brazilian addresses or geo-qualifying users in checkout workflows.

Common use cases
  • Build a Netshoes price tracker that monitors price and oldPrice changes across SKUs over time.
  • Aggregate review sentiment using summaryAI, percentRecommended, and histogram data from get_product_reviews.
  • Populate a product comparison tool with size and color variant availability from get_product_details.
  • Index category pages via get_product_listings_by_category with iterating path and page parameters to build a catalog.
  • Validate or geocode Brazilian shipping addresses using CEP lookups in check_delivery_estimate.
  • Monitor discount depth by comparing price vs oldPrice from search results across sporting goods categories.
  • Feed an affiliate site with product images, ratings, and URLs returned by search_products.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Netshoes offer an official public developer API?+
Netshoes does not publish a public developer API for product data. Their developer program has historically focused on seller and marketplace integrations rather than product catalog or review access.
Why do some keyword searches return an upstream error?+
Single-brand queries like nike can cause the site to redirect to a brand landing page rather than a standard search results page, which results in an upstream error from the API. Using more specific queries — for example nike tenis or adidas running — bypasses this behavior and returns the expected paginated product listing.
What does `get_product_reviews` return beyond the review text?+
In addition to the reviews array (which includes rating, comments, userRecommends, photos, and createdAt per review), the endpoint returns a histogram of star distribution, surveys with attribute-level ratings, percentRecommended, numberOfReviews, and a summaryAI string containing an AI-generated synthesis of the review set.
Does the API support filtering search results by size, color, or price range?+
Search results via search_products are returned without filter parameters; the endpoint supports only query and page. The get_product_listings_by_category endpoint returns a filters array showing available filter options for a category, but applying those filters as query parameters is not currently supported. You can fork this API on Parse and revise it to add filter-parameter support to the category endpoint.
Does the API cover Netshoes markets outside Brazil, such as Argentina or Mexico?+
The API is scoped to Netshoes.com.br. Coverage of Netshoes Argentina or other regional storefronts is not currently included. You can fork this API on Parse and revise it to target additional regional domains.
Page content last updated . Spec covers 5 endpoints from netshoes.com.
Related APIs in EcommerceSee all →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
x-kom.pl API
Access product data from x-kom.pl, a major Polish electronics retailer. Search products by keyword or category, retrieve detailed product pages, customer reviews, Q&A, promotions, flash deals, and physical store locations.
Netshoes API – Products, Reviews & Categories · Parse