Country Road AU Product Scraper avatar

Country Road AU Product Scraper

Pricing

from $0.30 / 1,000 results

Go to Apify Store
Country Road AU Product Scraper

Country Road AU Product Scraper

Extract Country Road AU products, prices, sale prices, variants, availability, categories, images, and item details for price monitoring and retail research.

Pricing

from $0.30 / 1,000 results

Rating

0.0

(0)

Developer

Dmitriy Gyrbu

Dmitriy Gyrbu

Maintained by Community

Actor stats

1

Bookmarked

3

Total users

2

Monthly active users

3 days ago

Last modified

Share

Extract Country Road AU products, prices, sale prices, variants, stock status, images, categories and detailed product information. Use the data for price monitoring, assortment tracking, ecommerce research and product intelligence.

This is an unofficial Actor and is not affiliated with or endorsed by Country Road.

What you can collect

  • Keyword search results with price, images, variants, barcodes and availability
  • Products from a Country Road category page
  • One complete product record with descriptions, specifications and variants
  • Pagination and sorting for repeatable catalogue monitoring
  • Optional listing enrichment when every product needs a detail-page visit

Supported operations

Required:

  • operation: search
  • searchQuery: a product keyword

Optional:

  • page, pageSize, maxItems, sort, filters
  • enrichItems: visits each result page; disabled by default to keep runs fast
{
"operation": "search",
"searchQuery": "dress",
"maxItems": 10,
"pageSize": 10,
"sort": "recommended",
"proxyConfiguration": "auto",
"enrichItems": false
}

Category

Required:

  • operation: category
  • categoryUrl: a full Country Road category URL or path
{
"operation": "category",
"categoryUrl": "https://www.countryroad.com.au/woman-new-in/",
"maxItems": 10,
"pageSize": 10,
"proxyConfiguration": "auto",
"enrichItems": false
}

Item details

Required:

  • operation: item
  • itemSlug: style code, product slug/path or full product URL

Product pages are more strongly protected than listing pages. The verified configuration uses an Australian residential proxy:

{
"operation": "item",
"itemSlug": "60316418-9529",
"proxyConfiguration": "apify",
"apifyProxyGroups": ["RESIDENTIAL"],
"apifyProxyCountryCode": "AU"
}

Ready-to-run Saved Tasks

The Actor includes buyer-ready tasks for common workflows:

  • Dress Price & Assortment Watch — monitor a stable keyword search
  • Woman New-In Category Monitor — track new products and prices
  • Exact Product Details — collect a full record for a known style code

Tasks are bounded and can be scheduled directly in Apify Console.

Access routes

auto is the reliable default and uses an Australian residential route. direct is cheaper and can work for search or category, but repeated tests showed intermittent 403 responses. The Actor also tries a browser-compatible HTTP fallback when the primary request is blocked; it does not launch a full browser.

For item details, use apify with the RESIDENTIAL group and country AU. Custom HTTP proxy URLs are also supported. Access can still vary when the storefront changes its protection rules.

Output

Each product is written as one Dataset row. Depending on the operation, fields can include:

  • id, slug, name, brand, source_url, category
  • price, discount_price, price_info, currency
  • barcode, eans, size, color
  • in_stock, stock_status, stock
  • image, images, variants
  • short_description, description, specifications
  • breadcrumbs, attributes

The OUTPUT record in the default key-value store contains success, status, total, charged_count, structured errors and the access route used.

Use with n8n or Make

A practical automation is:

Apify Actor → Dataset → n8n/Make → Google Sheets, Telegram or CRM

  1. Start the Actor or a Saved Task with the Apify API.
  2. Wait until the run reaches SUCCEEDED.
  3. Read defaultDatasetId from the run.
  4. Fetch Dataset items and send only the fields your workflow needs.

Start a run:

curl -X POST \
"https://api.apify.com/v2/acts/aR7UXVMeeEQFzqDiO/runs?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"operation":"search","searchQuery":"dress","maxItems":10,"proxyConfiguration":"auto"}'

Read results after the run completes:

$curl "https://api.apify.com/v2/datasets/DATASET_ID/items?clean=true&format=json"

In n8n or Make, use an HTTP request to start the run, poll the returned run ID, then read the Dataset. This keeps the scraping step separate from alerts, spreadsheets and CRM updates.

Limits and responsible use

  • Only public storefront data is collected.
  • The Actor does not log in, access carts or solve CAPTCHAs.
  • maxItems and pageSize are capped at 100.
  • Listing enrichment adds one product-page request per result, so enable it only when the extra detail is required.
  • Availability and prices can change between runs.