VOOZH about

URL: https://apify.com/pintostudio/amazon-categories-scraper

⇱ Amazon Categories Scraper Β· Apify


Pricing

$5.00/month + usage

Go to Apify Store

Amazon Categories Scraper

The Amazon Categories Actor is a web scraping tool deployed on the Apify platform that extracts category information from Amazon's regional websites.

Pricing

$5.00/month + usage

Rating

0.0

(0)

Developer

πŸ‘ Pinto Studio

Pinto Studio

Maintained by Community

Actor stats

0

Bookmarked

50

Total users

1

Monthly active users

a year ago

Last modified

Share

Amazon Categories Actor Documentation

Overview

The Amazon Categories Actor is a web scraping tool deployed on the Apify platform that extracts category information from Amazon's regional websites. This actor scrapes the main navigation categories and their associated URLs from different Amazon country-specific domains.

Features

  • Supports 24 different Amazon regional websites
  • Extracts category titles and URLs from Amazon's main navigation
  • Returns structured JSON data with category information
  • Handles country-specific Amazon domains automatically
  • Provides comprehensive error handling and logging

Supported Countries

The actor supports the following Amazon regional sites:

CountryISO CodeAmazon Domain
Australiaauamazon.com.au
Belgiumbeamazon.com.be
Brazilbramazon.com.br
Canadacaamazon.ca
Chinacnamazon.cn
Egyptegamazon.eg
Franceframazon.fr
Germanydeamazon.de
Indiainamazon.in
Irelandieamazon.ie
Italyitamazon.it
Japanjpamazon.co.jp
Mexicomxamazon.com.mx
Netherlandsnlamazon.nl
Polandplamazon.pl
Saudi Arabiasaamazon.sa
Singaporesgamazon.sg
South Africazaamazon.co.za
Spainesamazon.es
Swedenseamazon.se
Turkeytramazon.com.tr
United Arab Emiratesaeamazon.ae
United Kingdomgbamazon.co.uk
United Statesusamazon.com

Input Schema

The actor accepts the following input parameters:

Required Parameters

  • countryIso (string): Two-letter ISO country code for the Amazon regional site
    • Default: "us"
    • Type: String (dropdown selection)
    • Required: Yes
    • Valid Values: See supported countries table above

Input Example

{
"countryIso":"us"
}

Output Format

The actor returns an array of category objects, where each object contains:

  • categories (array): List of category objects with:
    • title (string): The display name of the category
    • url (string): The full URL to the category page
  • mainId (string): Internal identifier for the main category section

Output Example

[
{
"categories":[
{
"title":"All Videos",
"url":"https://www.amazon.com/Amazon-Video/b?node=2858778011&ref_=nav_em__aiv_0_2_2_2"
},
{
"title":"Included with Prime",
"url":"https://www.amazon.com/s/browse?filterId=OFFER_FILTER%3DPRIME&node=2858778011&ref_=nav_em__aiv_piv_0_2_2_3"
},
{
"title":"Prime Video Channels",
"url":"https://www.amazon.com/s/browse?filterId=OFFER_FILTER%3DSUBSCRIPTIONS&node=2858778011&ref_=nav_em__nav_sa_aos_0_2_2_4"
}
],
"mainId":"2"
},
{
"categories":[
{
"title":"Amazon Music Unlimited",
"url":"https://www.amazon.com/music/unlimited?ref_=nav_em__dm_hf_0_2_3_2"
},
{
"title":"Amazon Music Prime",
"url":"https://www.amazon.com/music/prime?ref_=nav_em__dm_pm_0_2_3_4"
},
{
"title":"CDs & Vinyl",
"url":"https://www.amazon.com/gp/browse.html?node=5174&ref_=nav_em__dm_cds_vinyl_0_2_3_13"
}
],
"mainId":"3"
}
]

Usage Instructions

Via Apify Console

  1. Navigate to the Amazon Categories Actor in your Apify console
  2. Click "Start" to configure the actor
  3. Select your desired country from the "Country ISO Code" dropdown
  4. Click "Start" to run the actor
  5. Monitor the run in the console and download results when complete

Via Apify API

// Using Apify Client
import{ ApifyApi }from'apify-client';
const client =newApifyApi({
token:'YOUR_API_TOKEN'
});
const input ={
countryIso:'us'
};
const run =await client.actor('THE_ACTOR_ID').call(input);
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Via HTTP API

curl-X POST https://api.apify.com/v2/acts/THE_ACTOR_ID/runs \
-H"Authorization: Bearer YOUR_API_TOKEN"\
-H"Content-Type: application/json"\
-d'{
"countryIso": "us"
}'

Common Use Cases

  1. E-commerce Research: Analyze Amazon's category structure across different markets
  2. Market Analysis: Compare product categories between different countries
  3. Competitive Intelligence: Monitor changes in Amazon's navigation and category organization
  4. Data Integration: Feed category data into business intelligence systems
  5. SEO Research: Understand Amazon's category URL structures for optimization

Troubleshooting

Common Issues

  1. Empty Results:

    • Check if the country code is valid
    • Verify Amazon site is accessible in your region
  2. Timeout Errors:

    • Amazon might be experiencing high traffic
    • Try running the actor again after a few minutes
  3. Invalid URLs in Output:

    • This may indicate changes in Amazon's website structure
    • Contact support if issue persists

Getting Help

  • Check the actor run logs for detailed error messages
  • Verify input parameters match the required format
  • Ensure you have sufficient Apify credits for the run

Technical Details

Dependencies

  • Apify SDK: Core framework for building Apify actors
  • Axios: HTTP client for making web requests
  • Custom Helpers: Internal helper functions for category extraction

Data Storage

  • Results are stored in the default dataset
  • Additional output is stored as key-value pair with key 'output'
  • All data is accessible via Apify API or console

Architecture

The actor follows a simple architecture:

  1. Initialize Apify SDK
  2. Parse input parameters
  3. Call helper function with country ISO code
  4. Extract and structure category data
  5. Store results in dataset and key-value store
  6. Clean up and exit

Best Practices

  1. Batch Processing: For multiple countries, run separate instances rather than looping
  2. Caching: Cache results if running frequently to reduce API calls
  3. Monitoring: Set up monitoring for regular data collection
  4. Error Handling: Always check run status before processing results

Support

If you have any questions or encounter any issues, please consult the Apify documentation or reach out to us through one of the following channels:


You might also like

Shein Scraper

axlymxp/Shein-scraper

Scrapes product data from Shein's API including prices, discounts, ratings and more. Search products by keyword and configure the number of items to scrape. Get detailed info like stock levels, sales status, images, reviews and profit potential.

Shein Product Scraper

seamless_coffer/shein-product-scraper

Scrape your data from Shein Multi-Domain with this tool. Extract price, images, description, sizes, category, shipping price and much more. Download your data.

πŸ‘ User avatar

seamless coffer

164

5.0

Temu Products Scraper

crw/temu-products-scraper

Extract product data from Temu by search keyword. Collect prices, discounts, ratings, sales counts, and images. Supports sort options including relevance, top sales, most recent, and price order. Ideal for dropshipping research, price monitoring, and trend analysis.

Shein Product Scraper

shahidirfan/shein-product-scraper

Extract product data from Shein including prices, images, descriptions, sizes, and ratings. Perfect for market research, price comparison, inventory monitoring, and competitive analysis. Get structured data in JSON or CSV format with reliable parsing.

102

5.0

Shein Scraper

hello.datawizards/Shein-scraper

Extract detailed product data from Shein using keyword search. This actor provides pricing, ratings, images, and bestseller infoβ€”perfect for market research or trend analysis. Requires Apify Residential Proxy to avoid blocking and ensure smooth, reliable scraping.

Shein Product Scraper

crawlerbros/shein-scraper

Scrape product details from Shein (us.shein.com) by direct product URL. Returns SKU, product ID, title, price, sale price, images, sizes, colors, and rating.

27

Amazon Products By Category Scraper

pintostudio/amazon-products-by-category-scraper

The Amazon Products By Category Actor is a web scraping tool deployed on the Apify platform that extracts product information from Amazon category pages.

23

Temu Products Scraper

amit123/temu-products-scraper

Scrapes product listings from Temu based on search keywords. Returns detailed data including title, price, discount, rating, sales, images, and product links. Ideal for price tracking, product research, and e-commerce analysis. Fast, structured, and easy to use.

Temu Scraper

gio21/temu-scraper

Scrape Temu products by search keyword. Title, price, rating, reviews, image, shipping info. Pay per product.

Related articles

How to scrape Amazon product data using Python (+ no-code)
Read more
Best Amazon price tracker for growing online stores in 2026
Read more
How to scrape Amazon reviews in minutes
Read more