Findchips Scraper — MPN Price, Stock & Multi-Distributor Offers avatar

Findchips Scraper — MPN Price, Stock & Multi-Distributor Offers

Pricing

from $0.65 / 1,000 product results

Go to Apify Store
Findchips Scraper — MPN Price, Stock & Multi-Distributor Offers

Findchips Scraper — MPN Price, Stock & Multi-Distributor Offers

Findchips scraper for MPN / BOM lookup and multi-distributor offer enrichment. Compare DigiKey, Mouser, Arrow, Farnell and broker price breaks, stock, RoHS/ECCN, datasheets and alternates — Findchips API alternative for procurement workflows.

Pricing

from $0.65 / 1,000 product results

Rating

0.0

(0)

Developer

Andrej Kiva

Andrej Kiva

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Electronics aggregator data — Findchips cross-distributor price & stock next to DigiKey and RS Online catalog enrichment.

DigiKeyRS OnlineFindchips
DigiKey Product ScraperRS Online ScraperFindchips Scraper ◄── you are here

Disclaimer: Unofficial Actor for publicly accessible Findchips search and part-detail pages. Findchips, Supplyframe, and related names are trademarks of their respective owners. Not affiliated with, sponsored by, or endorsed by Supplyframe or Siemens. Provided for informational and research purposes only. You are responsible for complying with applicable laws and site terms of use.

Findchips scraper / Findchips API alternative for Apify — look up electronic components by manufacturer part number (MPN), search URL, or detail URL, then export multi-distributor offers, quantity-break pricing, live stock, authorized vs independent flags, RoHS / ECCN / HTS, parametric specs, datasheets, and alternates / FFF as clean JSON. Run from the Console, Python, Node.js, or MCP / AI assistants.

Compare DigiKey, Mouser, Arrow, Farnell, RS, Newark, TME, and independent brokers in one Findchips search — built for BOM price comparison, shortage monitoring, and procurement enrichment without enterprise Supplyframe credentials.


Key Features

  • MPN / BOM batch lookup — Findchips /search/{MPN} across authorized and independent distributors
  • Nested or flat offers — one product record with offers[], or one spreadsheet row per distributor line
  • Price breaks + stock — qty tiers, min/max price, currency, DISTI #, packaging, COO, RoHS
  • Part details enrichment — lifecycle, ECCN/HTS, parametric attributes, datasheet link
  • Alternates / FFF / related — alternate MPNs and compare-list equivalents from the detail page
  • Filters — authorized-only, independent-only, in-stock, exact MPN match, exclude sponsored
  • Fast HTTPcurl_cffi Chrome TLS; sticky residential proxy recommended (no headless browser)

Use Cases

Use caseWhat you getWhy it helps
BOM cross-distributor quoteMPN → DigiKey + Mouser + Arrow + brokers in one itemFirst-pass quote without N single-distributor runs
Authorized vs independentdistributorType + stock/priceSpot broker pricing vs franchised channels
Shortage / allocationStock + price breaks per sellerSee who still has inventory
Compliance snapshotRoHS, ECCN, HTS, lifecycleExport-control and green screening
Alternate discoveryAlternates + FFF listsMitigate EOL / NRFND risk

When to use this Actor

  • You need a Findchips multi-distributor compare for known MPNs
  • BOM enrichment / price intelligence before diving into a single authorized catalog
  • A Findchips API alternative without enterprise Supplyframe credentials
  • Spreadsheet export of flat distributor offers (outputMode: offers)

When not to use this Actor

  • Official Supplyframe / Findchips API contracts with your own SLA
  • Deep DigiKey / RS catalog parametrics only — use the sibling Actors
  • Cart, RFQ, checkout, or account automation

Input Parameters

ParameterTypeDefaultDescription
partNumbersArrayMPNs for Findchips /search/{MPN}
searchUrlsArrayFindchips search URLs
detailUrlsArray/detail/{MPN}/{Manufacturer} URLs
outputModeEnumproductproduct (nested offers) or offers (flat rows)
maxItemsInteger50Cap on dataset items
maxOffersPerPartIntegerCap offers kept per MPN
includeDetailsBooleantrueFetch detail page enrichment
includeTechnicalDataBooleantrueParametric attributes
includeAlternatesBooleantrueAlternates / FFF
authorizedOnlyBooleanfalseAuthorized / manufacturer only
independentOnlyBooleanfalseIndependent only
inStockOnlyBooleanfalseDrop zero/missing stock
exactMatchOnlyBooleanfalseExact MPN match only
excludeSponsoredBooleanfalseDrop sponsored rows
requestDelaySecsNumber1.0Delay between requests
proxyConfigurationObjectResidential USApify Proxy sticky session

Input Example — BOM MPN lookup

{
"partNumbers": ["STM32F405RGT6", "1N4148W-TP"],
"outputMode": "product",
"maxItems": 25,
"includeDetails": true,
"exactMatchOnly": false,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"],
"apifyProxyCountry": "US"
}
}

Input Example — flat offers spreadsheet

{
"partNumbers": ["STM32F405RGT6"],
"outputMode": "offers",
"authorizedOnly": true,
"inStockOnly": true,
"maxItems": 200
}

Output

Product mode (recordType: product)

FieldDescription
mpn / manufacturerPart identity
offers[]Distributor rows with price breaks, stock, type, buy URL
offersCount / distributorCountCounts
qtyAvailableValue / unitPriceValueBest stock / min price summary
compliance / technicalDataDetail enrichment
alternates / fffEquivalents / relatedPartsAlternate / related MPNs
datasheetUrl / detailUrl / urlLinks

Offers mode (recordType: listing)

One row per distributor offer: distributor, distributorType, distiPartNumber, qtyAvailableValue, unitPriceValue, priceBreaks, currency, buyUrl, etc.

Example product (abbreviated)

{
"source": "findchips",
"recordType": "product",
"query": "STM32F405RGT6",
"mpn": "STM32F405RGT6",
"manufacturer": "STMicroelectronics",
"url": "https://www.findchips.com/search/STM32F405RGT6",
"offersCount": 40,
"unitPriceValue": 6.638,
"qtyAvailableValue": 14736,
"lifecycleStatus": "Active",
"currency": "USD",
"offers": [
{
"distributor": "DigiKey",
"distributorType": "authorized",
"mpn": "STM32F405RGT6",
"stock": 14736,
"priceBreaks": [{"qty": 1, "price": 11.08, "currency": "USD"}],
"currency": "USD"
}
],
"scrapedAt": "2026-08-08T12:00:00Z"
}

Integration examples

Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('crawloop/findchips-scraper').call({
partNumbers: ['STM32F405RGT6'],
outputMode: 'product',
maxItems: 10,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items[0]?.offersCount, items[0]?.unitPriceValue);

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_TOKEN")
run = client.actor("crawloop/findchips-scraper").call(
run_input={
"partNumbers": ["STM32F405RGT6"],
"outputMode": "product",
"maxItems": 10,
}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item.get("mpn"), item.get("offersCount"), item.get("unitPriceValue"))

cURL

curl "https://api.apify.com/v2/acts/crawloop~findchips-scraper/runs?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"partNumbers":["STM32F405RGT6"],"outputMode":"product","maxItems":5}'

MCP and AI assistants

Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call this Actor by its Store ID / name (crawloop/findchips-scraper).

Example prompts:

  • "Run Findchips Scraper for STM32F405RGT6 and return the cheapest in-stock authorized offers as JSON"
  • "Compare Findchips multi-distributor stock for my BOM list and summarize shortages"
  • "Chain Findchips Scraper then DigiKey Product Scraper for the winning authorized MPN"

Suite next step

After a Findchips compare, enrich the winning authorized line with DigiKey Product Scraper or RS Online Scraper for deeper catalog parametrics and storefront pricing.


FAQ

Is this an official Findchips API?
No. It scrapes publicly accessible Findchips HTML pages as an unofficial Findchips API alternative.

Findchips vs DigiKey scraper?
Use Findchips to compare many distributors in one call. Use DigiKey / RS Actors when you need deep single-catalog specs and storefront pricing.

Why do currencies differ?
Findchips localizes estimates by geo/proxy. Use a consistent residential proxy country (for example US) for comparable runs.

Product vs offers mode?
Use product for one JSON document per MPN with nested offers[]. Use offers for flat CSV/Excel rows (one listing per distributor offer).

Can I filter brokers out?
Yes — set authorizedOnly: true and optionally excludeSponsored: true.