Globalmark Scraper avatar

Globalmark Scraper

Pricing

Pay per usage

Go to Apify Store
Globalmark Scraper

Globalmark Scraper

Apify Actor scraping FPV drone components from globalmark.com.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

GlobalMark Drone Components Scraper

Apify Actor that scrapes FPV drone components and parts from globalmark.com.ua — a Ukrainian manufacturer and supplier of military drone components.

Scraped Data

Each product in the dataset:

FieldTypeDescription
urlstringProduct page URL
namestringProduct name (from h1)
slugstringURL slug
categorystringCategory (from breadcrumbs)
descriptionstringShort description (from JSON-LD / meta tag)
fullDescriptionstringFull description text from page
imagesstring[]Product image URLs
specificationsobjectTech specs (Weight, Type, KV, etc.)
pricestringAlways "on request" (manager confirms)
inStockbooleanStock availability
ratingnumber | nullAggregate rating
reviewCountnumber | nullNumber of reviews
breadcrumbsstring[]Breadcrumb trail
metaDescriptionstringMeta description tag
scrapedAtstringISO timestamp

Input

{
"startUrls": [
{ "url": "https://globalmark.com.ua/categories/components" }
],
"maxProducts": 0,
"includeRelated": false
}
FieldTypeDefaultDescription
startUrlsarrayComponents categoryCategory URLs to scrape
maxProductsinteger0 (unlimited)Max products to scrape
includeRelatedbooleanfalseAlso scrape related products

Site Structure

The site is a server-rendered PHP/Laravel app. Category listing with pagination (9 per page, /page-N). Product pages at /product/{slug} with JSON-LD structured data.

Pagination: https://globalmark.com.ua/categories/components/page-{N}

Development

pnpm install
pnpm dev # Run locally with tsx
pnpm build # Compile TypeScript
pnpm start # Run compiled version

Tech Stack

  • Crawlee (CheerioCrawler) — no headless browser needed, site is server-rendered
  • Cheerio — HTML parsing
  • Apify SDK — Actor lifecycle + dataset storage

Output Example

{
"url": "https://globalmark.com.ua/product/imx335-camera-module-5mp-mipi",
"name": "IMX335 Camera Module 5MP MIPI",
"slug": "imx335-camera-module-5mp-mipi",
"category": "Components",
"description": "IMX335 Camera Module 5MP MIPI ➔ Buy from manufacturer...",
"fullDescription": "The IMX335 is a 5MP MIPI camera module...",
"images": [
"https://globalmark.com.ua/storage/2026/05/15/imx335-camera-module-5mp-mipi-38.jpeg"
],
"specifications": {
"Weight": "10 g"
},
"price": "on request",
"inStock": true,
"rating": 5.0,
"reviewCount": 20,
"breadcrumbs": ["Home", "Catalog", "Components", "IMX335 Camera Module 5MP MIPI"],
"metaDescription": "...",
"scrapedAt": "2026-05-15T18:30:00.000Z"
}