Discover/tiendamia.com API
live

tiendamia.com APItiendamia.com

Search products, retrieve best sellers, outlet deals, and weekly promotions from Tiendamia across 5 Latin American countries and multiple vendors.

Endpoints
6
Updated
14d ago
Try it
Page number for pagination.
Search keyword (e.g. 'laptop', 'samsung').
Vendor ID: 'amz' for Amazon, 'ebay' for eBay, 'mkt' for Marketplace.
Country code: 'pe' (Peru), 'ar' (Argentina), 'cr' (Costa Rica), 'ec' (Ecuador), 'uy' (Urug
api.parse.bot/scraper/2b9395d8-a38c-47d1-afe0-a4270be842fb/<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/2b9395d8-a38c-47d1-afe0-a4270be842fb/search_products?query=laptop&vendor=amz&country=pe' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 6 totalclick to expand

Search for products on Tiendamia across Amazon, eBay, or Marketplace vendors. Returns product cards with name, brand, price, discount, and image. Results are paginated and vary by country domain.

Input
ParamTypeDescription
pagestringPage number for pagination.
queryrequiredstringSearch keyword (e.g. 'laptop', 'samsung').
vendorstringVendor ID: 'amz' for Amazon, 'ebay' for eBay, 'mkt' for Marketplace.
countrystringCountry code: 'pe' (Peru), 'ar' (Argentina), 'cr' (Costa Rica), 'ec' (Ecuador), 'uy' (Uruguay).
Response
{
  "type": "object",
  "fields": {
    "page": "page number used",
    "query": "search keyword echoed back",
    "country": "country code used",
    "products": "array of product objects with sku, name, brand, url, image_url, price, original_price, discount_percentage",
    "total_results_text": "string with total result count text from the site, or null"
  },
  "sample": {
    "data": {
      "page": "1",
      "query": "laptop",
      "country": "pe",
      "products": [
        {
          "sku": "AMZ-B0947BJ67M",
          "url": "https://tiendamia.com.pe/p/amz/b0947bj67m/example-laptop",
          "asin": "B0947BJ67M",
          "name": "Example Laptop 15.6\"",
          "brand": "DELL",
          "price": "S/ 2,761.29",
          "image_url": "https://m.media-amazon.com/images/I/example.jpg",
          "original_price": "S/ 5,384.52",
          "discount_percentage": "49"
        }
      ],
      "total_results_text": "306 resultados enamazon"
    },
    "status": "success"
  }
}

About the tiendamia.com API

The Tiendamia API exposes 6 endpoints covering product search, detailed product data, best sellers, outlet deals, weekly promotions, and supported country listings. The search_products endpoint queries Amazon, eBay, or Marketplace vendors across Peru, Argentina, Costa Rica, Ecuador, and Uruguay, returning per-product fields including SKU, price, original price, discount percentage, brand, and image URL. The get_product_details endpoint adds variant availability, category taxonomy, and local currency codes.

Search and Product Data

The search_products endpoint accepts a required query string plus optional vendor and country filters. The vendor parameter takes amz (Amazon), ebay, or mkt (Marketplace); the country parameter accepts pe, ar, cr, ec, or uy. Results are paginated via a page parameter and return an array of product objects, each carrying sku, name, brand, url, image_url, price, original_price, and discount_percentage. The response also echoes back query, country, and a total_results_text string when the site reports a result count.

Product Details and Variants

get_product_details takes an Amazon ASIN or equivalent SKU and an optional country code. It returns a richer payload: name, brand, image, price, currency (e.g. PEN for Peru), categories as a taxonomy array, and a variants array where each variant object includes sku, label, and an available boolean. This makes it possible to check which specific configurations of a product (color, size, etc.) are currently listed.

Deals and Promotions

Three endpoints cover curated product sets: get_best_sellers, get_outlet_deals, and get_weekly_deals. All three accept the same optional country parameter and return the same product card shape — sku, name, brand, url, image_url, price, original_price, and discount_percentage. None require a search query; they reflect the lists Tiendamia maintains on its best-sellers, outlet, and daily-deals pages respectively.

Country Coverage

get_countries takes no inputs and returns an array of supported country objects, each with code, name, and domain fields. This is useful for dynamically enumerating available markets before constructing requests to the other endpoints rather than hard-coding country codes.

Common use cases
  • Track price drops across Peru, Argentina, and Ecuador for a given product ASIN using get_product_details with multiple country codes.
  • Build a deal-aggregation feed by polling get_weekly_deals and get_outlet_deals daily and comparing original_price to price.
  • Monitor Amazon vs. eBay pricing for the same query using the vendor parameter in search_products.
  • Check variant availability (size, color) for a specific product SKU using the variants array from get_product_details.
  • Populate a regional best-seller widget by pulling get_best_sellers for each supported country code.
  • Categorize products for a taxonomy-based catalog using the categories field returned by get_product_details.
  • Enumerate all supported markets at app startup with get_countries to validate user-selected country codes before querying.
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 Tiendamia have an official developer API?+
Tiendamia does not publish a documented public developer API. This Parse API provides structured access to the product and deals data the site exposes.
What does the `search_products` endpoint return when I don't specify a vendor?+
When the vendor parameter is omitted, results come from all available vendors. Specifying amz, ebay, or mkt filters results to that vendor only. The response always includes sku, name, brand, price, original_price, discount_percentage, and image_url for each product card, along with total_results_text when available.
Does the API cover seller ratings, user reviews, or shipping cost estimates?+
Not currently. The endpoints return pricing, variant availability, brand, categories, and discount data, but do not include seller ratings, buyer reviews, or shipping cost breakdowns. You can fork this API on Parse and revise it to add an endpoint targeting those data points.
How does pagination work in `search_products`?+
The page parameter is an optional string representing the page number. The response echoes back the page value used and includes total_results_text when the source reports a total count — though that field may be null. There is no explicit total_pages field in the response, so you need to parse total_results_text or step through pages until results are empty to determine the full result set size.
Is product data from all five countries always available for a given ASIN?+
Not necessarily. Tiendamia operates separate country domains, and a product may be listed on some but not all of them. Passing a specific country code to get_product_details returns data scoped to that market, including the local currency code. If a product is not available in a given market, the response will reflect that. You can fork this API on Parse to add logic that queries multiple countries in sequence and merges results.
Page content last updated . Spec covers 6 endpoints from tiendamia.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.