Globalmark Scraper
Pricing
Pay per usage
Go to Apify Store
Pricing
Pay per usage
Rating
0.0
(0)
Developer
Jakub Kopecký
Maintained by CommunityActor 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:
| Field | Type | Description |
|---|---|---|
url | string | Product page URL |
name | string | Product name (from h1) |
slug | string | URL slug |
category | string | Category (from breadcrumbs) |
description | string | Short description (from JSON-LD / meta tag) |
fullDescription | string | Full description text from page |
images | string[] | Product image URLs |
specifications | object | Tech specs (Weight, Type, KV, etc.) |
price | string | Always "on request" (manager confirms) |
inStock | boolean | Stock availability |
rating | number | null | Aggregate rating |
reviewCount | number | null | Number of reviews |
breadcrumbs | string[] | Breadcrumb trail |
metaDescription | string | Meta description tag |
scrapedAt | string | ISO timestamp |
Input
{"startUrls": [{ "url": "https://globalmark.com.ua/categories/components" }],"maxProducts": 0,"includeRelated": false}
| Field | Type | Default | Description |
|---|---|---|---|
startUrls | array | Components category | Category URLs to scrape |
maxProducts | integer | 0 (unlimited) | Max products to scrape |
includeRelated | boolean | false | Also 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 installpnpm dev # Run locally with tsxpnpm build # Compile TypeScriptpnpm 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"}