Laboratory Equipment Supplier Catalogs Scraper
Pricing
Pay per event
Laboratory Equipment Supplier Catalogs Scraper
Extract USA Scientific catalog data in a structured format designed for procurement and laboratory supplier analysis. Collect product names, product codes, prices,variants, technical specifications, and packaging details to support price benchmarking, and recurring catalog monitoring.
Pricing
Pay per event
Rating
0.0
(0)
Developer
ParseForge
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 hours ago
Last modified
Categories
Share

π§ͺ Laboratory Equipment Supplier Catalogs Scraper
π Extract structured product catalog data from USA Scientific. Collect product names, codes, prices, variants, technical specifications, and packaging details for procurement research and supplier analysis.
π Last updated: 2026-04-16
Collect structured product data from USA Scientific product pages, listing pages, or sitemap discovery. Export prices, inventory status, specifications, variants, and category metadata for procurement research, supplier benchmarking, and catalog analysis.
Whether you are a procurement team comparing lab supplier pricing, an operations team tracking catalog changes, or a market researcher mapping product coverage, this tool delivers normalized product data with pricing, stock signals, specifications, and category context in one structured dataset.
| Target | USA Scientific laboratory supply catalog |
|---|---|
| Use Cases | Procurement research, price benchmarking, catalog monitoring, supply chain analysis |
π What it does
- π§ͺ Scrapes direct product URLs with full product details, pricing, and inventory status
- π Crawls listing URLs with storefront sorting, pagination, and facet filtering
- π Supports parent categories with optional automatic subcategory expansion
- πΊοΈ Falls back to sitemap mode when no explicit URLs are provided
- π¦ Exports normalized fields for product, pricing, inventory, and packaging attributes
- π Preserves storefront facet filtering behavior from live listing pages
Each product record includes structured pricing with volume discount bands, stock availability signals, technical specifications, variant counts, and category metadata. Three collection modes give you flexibility for different use cases.
π‘ Why it matters: Laboratory supply catalogs contain thousands of products with complex pricing tiers and specifications. Manual collection is slow and error-prone. This scraper automates catalog extraction so procurement teams can compare pricing, track inventory changes, and benchmark suppliers at scale.
π¬ Full Demo
π§ Coming soon
βοΈ Input
| Field | Type | Description |
|---|---|---|
| Listing URLs | String List | Category or subcategory URLs. This mode runs first when provided. |
| Max Items | Number | Maximum number of products to collect. Free users: limited to 10. |
| Include Subcategories | Checkbox | If a parent listing has no products, crawl child categories too. |
| Filters | String List | Facet filters for listing mode (e.g., Volume=2.0 mL, Color=Amber) |
| Sort By | Select | Our Picks, New Arrivals, Alphabetical A-Z, or Alphabetical Z-A |
| Listing Page Size | Number | Results requested per listing page (default: 36) |
| Start URLs | String List | Direct product URLs. Used when listing URLs are not provided. |
| Search Keyword | Text | Sitemap URL slug filter. Used when no URLs are provided. |
Example 1: Category listing with filters
{"listingUrls": ["https://www.usascientific.com/seal-rite/c/124"],"maxItems": 50,"sortBy": "alphabetical-asc"}
Example 2: Direct product pages
{"startUrls": ["https://www.usascientific.com/2ml-seal-rite-microcentrifuge-tubes/p/1605-5500"],"maxItems": 10}
β οΈ Good to Know: Free users are limited to 10 items per run. Three collection modes are available: listing URLs (category crawling), start URLs (direct product pages), and sitemap fallback (when no URLs are provided). Filters use the format Facet=Value (e.g., Volume=2.0 mL).
π Output
π§Ύ Schema
| Emoji | Field | Type | Description |
|---|---|---|---|
| πΌοΈ | imageUrl | String | Product image URL |
| π·οΈ | productCode | String | Product SKU/code |
| π | productName | String | Product name |
| π΅ | price | Number | Product price |
| π¦ | inventoryStatus | String | Stock availability status |
| π | volumePriceBands | Array | Volume discount tiers |
| π§Ύ | specifications | Object | Technical specifications (key-value) |
| π§ͺ | material | String | Product material |
| π¨ | color | String | Product color |
| π | volume | String | Product volume |
| ποΈ | categories | Array | Category hierarchy |
| π | productUrl | String | Direct product page URL |
| βοΈ | packageDimensions | Object | Package weight and dimensions |
| β | isActive | Boolean | Whether the product is active |
| π’ | variantCount | Number | Number of product variants |
| π | relatedProductCodes | Array | Related product codes |
| π | scrapedAt | String | Timestamp when data was collected |
| β οΈ | error | String | Error message if extraction failed |
β¨ Why choose Laboratory Equipment Supplier Catalogs Scraper
| Feature | Details |
|---|---|
| π§ͺ Three collection modes | Listing URLs, direct product pages, or sitemap fallback |
| π Volume pricing | Price bands for bulk ordering and procurement analysis |
| π¦ Inventory tracking | Stock availability signals for supply chain planning |
| π§Ύ Technical specs | Structured specifications as key-value pairs |
| π Category hierarchy | Full category context for each product |
| π Facet filtering | Supports storefront facet filters (volume, color, material) |
| π’ Variant data | Variant counts and related product codes |
π Structured catalog data for procurement and supplier benchmarking
π How it compares
| Feature | Lab Equipment Scraper | Other Tools |
|---|---|---|
| Volume pricing extraction | Yes | Rarely |
| Inventory status signals | Yes | No |
| Facet filter support | Yes | No |
| Subcategory auto-expansion | Yes | No |
| Three collection modes | Yes | URL only |
| Technical specifications | Yes | Partial |
| Related product codes | Yes | No |
| Category hierarchy | Yes | Partial |
π How to use
- Sign up - Create a free account with $5 credit
- Find the tool - Search for "Laboratory Equipment Supplier Catalogs Scraper" in the Apify Store
- Choose mode - Use listing URLs for categories, start URLs for products, or let sitemap mode discover products
- Set filters - Add facet filters, sorting, and max items
- Export data - Download as JSON, CSV, or Excel
πΌ Business use cases
| π§ͺ Procurement Teams Compare lab supplier pricing and stock across product lines for vendor selection and contract negotiation | π Operations Teams Track catalog changes, discontinued items, and inventory status for supply chain continuity |
| π Market Researchers Map product coverage, specifications, and packaging metadata across laboratory supply categories | π° Budget Analysts Monitor volume pricing tiers to optimize bulk purchasing decisions and forecast supply costs |
π Beyond business use cases
Data like this powers more than commercial workflows. The same structured records support research, education, civic projects, and personal initiatives.
π Automating with code
Node.js example:
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });const run = await client.actor("parseforge/lab-equipment-supplier-scraper").call({listingUrls: ["https://www.usascientific.com/seal-rite/c/124"],maxItems: 50});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);
Python example:
from apify_client import ApifyClientclient = ApifyClient("YOUR_API_TOKEN")run = client.actor("parseforge/lab-equipment-supplier-scraper").call(run_input={"listingUrls": ["https://www.usascientific.com/seal-rite/c/124"],"maxItems": 50})items = list(client.dataset(run["defaultDatasetId"]).iterate_items())print(items)
See the Apify API docs for more integration options.
β FAQ
π Integrate with your tools
- Make - Automate procurement workflows
- Zapier - Connect with 5,000+ apps
- Google Drive - Export catalog data to spreadsheets
- Airbyte - Data pipeline integration
- Slack - Get notifications when runs complete
- GitHub - Version control integration
π Recommended Actors
| Actor | Description |
|---|---|
| Fisher Scientific Product Scraper | Extract product data from Fisher Scientific |
| LabX Laboratory Equipment Scraper | Collect used lab equipment listings from LabX |
| GSA eLibrary Scraper | Collect government contract data |
| AWS Marketplace Scraper | Extract software product listings |
| MachineryTrader Scraper | Collect heavy equipment listings |
Browse our complete collection of data extraction tools for more.
π Need Help?
- Check the FAQ section above for common questions
- Visit the Apify documentation for platform guides
- Contact us to request a new scraper, propose a custom project, or report an issue at Tally contact form
Disclaimer: This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by USA Scientific. All trademarks mentioned are the property of their respective owners.