Defpoint Scraper avatar

Defpoint Scraper

Pricing

Pay per usage

Go to Apify Store
Defpoint Scraper

Defpoint Scraper

Apify Actor scraping drone spare parts from defpoint.ua

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Jakub Kopecký

Jakub Kopecký

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Categories

Share

defpoint-scraper

Apify Actor to scrape drone spare parts from defpoint.ua.

What it does

Crawls the Spare Parts for Drones category on defpoint.ua and extracts structured product data:

  • Product name, SKU, brand
  • Price (UAH)
  • Stock availability
  • Full description with specifications
  • Product images (deduplicated, full-resolution)

Stack

  • Crawlee + CheerioCrawler (no browser needed)
  • Node.js 22+

Usage

pnpm install
pnpm start

Output is stored in storage/datasets/default/ as JSON files.

Scraping target

DetailValue
Sitehttps://defpoint.ua
Category/en/drony-ta-zapchastyny/zapchastyny-dlya-droniv
Pages3 (24 products/page)
Total products~51
TechOpenCart, static HTML

Output schema

{
"url": "string",
"name": "string",
"sku": "string | null",
"brand": "string | null",
"price": "number | null (UAH)",
"stock": "'in stock' | 'out of stock' | null",
"description": "string | null",
"images": ["string (URL)"],
"breadcrumbs": ["string"],
"scrapedAt": "ISO 8601 date"
}