Discover/arrow.com API
live

arrow.com APIarrow.com

Search Arrow.com's catalog via API. Get part pricing, availability, specs, RoHS compliance, and manufacturer listings for electronic components.

Endpoints
4
Updated
10d ago
Try it
Number of results per page.
Result offset for pagination (0-based). Page is calculated as start/rows + 1.
Part number or keyword to search for (e.g. 'NE555', 'LM358', 'Arduino').
api.parse.bot/scraper/552c786b-18f1-4a60-ad01-97304694eebe/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/552c786b-18f1-4a60-ad01-97304694eebe/search_by_token?rows=25&start=0&search_token=NE555' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Search for electronic components by part number or keyword. Returns matching products with manufacturer info, descriptions, pricing tiers, availability, compliance data, and category taxonomy from Arrow.com's search API.

Input
ParamTypeDescription
rowsintegerNumber of results per page.
startintegerResult offset for pagination (0-based). Page is calculated as start/rows + 1.
search_tokenrequiredstringPart number or keyword to search for (e.g. 'NE555', 'LM358', 'Arduino').
Response
{
  "type": "object",
  "fields": {
    "facets": "array of filter facets (product line, manufacturer, status)",
    "products": "array of product objects with pricing, availability, manufacturer info",
    "taxonomy": "array of category hierarchy objects",
    "pagination": "object with currentPage, pageSize, totalPages, totalResults",
    "resultCount": "string total number of matching products",
    "searchKeyword": "array of search terms used"
  },
  "sample": {
    "data": {
      "facets": [
        {
          "code": "manufacturername",
          "name": "Manufacturer_name",
          "values": [
            {
              "count": 23,
              "value": "Texas Instruments"
            }
          ]
        }
      ],
      "products": [
        {
          "euRohs": "Compliant",
          "mfrName": "Texas Instruments",
          "fullPart": "NE555P",
          "partStatus": "Active",
          "groupByPrice": {
            "hasPrice": true,
            "totalStock": 2200
          },
          "calculatedPrice": "0.26520852",
          "productLineName": "Timers",
          "calculatedQuantity": "700",
          "storedPartDescription": "Standard Timer Single 0°C 70°C 8-Pin PDIP Tube"
        }
      ],
      "taxonomy": [
        {
          "categories": [
            {
              "name": "Clock and Timing",
              "productCount": 27
            }
          ],
          "productLineType": "Semiconductor"
        }
      ],
      "pagination": {
        "pageSize": 25,
        "totalPages": 2,
        "currentPage": 1,
        "totalResults": 27
      },
      "resultCount": "27",
      "searchKeyword": [
        "ne555"
      ]
    },
    "status": "success"
  }
}

About the arrow.com API

The Arrow.com API exposes 4 endpoints for querying Arrow Electronics' electronic components catalog, covering part search, batch lookups, product details, and manufacturer listings. The search_by_token endpoint returns pricing tiers, stock availability, compliance data, and category taxonomy for any part number or keyword. The get_product_detail endpoint returns 10+ structured fields per component including ECCN export codes, RoHS status, and total stock across regions.

Search and Batch Lookup

The search_by_token endpoint accepts a search_token (part number or keyword such as NE555 or Arduino) and returns a products array with manufacturer info, pricing tiers, stock availability, and facets for filtering by product line, manufacturer, and status. Pagination is controlled via rows (results per page) and start (zero-based offset); the response includes a pagination object with currentPage, totalPages, and totalResults. A taxonomy array provides the full category hierarchy for each result set.

For bulk workflows, search_by_list accepts a JSON array of part numbers via the parts_json parameter — either plain strings like ["LM358", "NE555"] or objects with a partNum key. It runs each query sequentially and returns an aggregated response with results (per-query results arrays), errors (failed queries with error messages), total_queries, and successful_queries. This is practical for BOM (bill of materials) validation where you need to check dozens of parts at once.

Product Details and Manufacturers

The get_product_detail endpoint takes a part_url in the format /en/products/<part-number-slug>/<manufacturer-slug> and returns a fully structured record: sku, partNumber, name, partStatus (Active, Obsolete, or NRND), totalStock, price (lowest USD price), euRohs compliance status, eccnCode for export control, category, and a product image URL. This is the endpoint to use when you already know the exact part and manufacturer.

The lookup_manufacturer endpoint requires no inputs and returns the complete list of manufacturers on Arrow.com — over 1,000 — with each entry's manufacturerName and productCount. This is useful for enumerating suppliers or building manufacturer-filtered search flows.

Common use cases
  • BOM validation: batch-check a list of part numbers against live Arrow stock and pricing using search_by_list
  • Component sourcing dashboards that display real-time totalStock and price for a shortlist of parts
  • Compliance screening: filter components by euRohs status and eccnCode before procurement
  • Obsolescence tracking: monitor partStatus (Active, Obsolete, NRND) across a component library
  • Manufacturer discovery: enumerate all Arrow-stocked suppliers and their product counts via lookup_manufacturer
  • Alternative part research: use keyword search via search_by_token to find substitute components by function or category
  • Catalog enrichment: pull structured specs and images via get_product_detail to populate an internal parts database
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Arrow Electronics have an official developer API?+
Yes. Arrow offers the Arrow Developer API at developer.arrow.com, which provides programmatic access to parts data, pricing, and ordering. The Parse API covers search, product details, and manufacturer listings without requiring Arrow API credentials or an account.
What does `get_product_detail` return beyond basic pricing?+
It returns euRohs compliance status, eccnCode for export control classification, partStatus (Active, Obsolete, or NRND), totalStock across all regions, a product image URL, sku, and the category (product line name) — all in a single call given a valid part_url path.
Does `search_by_token` support filtering results by manufacturer or status?+
The endpoint returns a facets array that includes manufacturer, product line, and status breakdowns for the result set, but the endpoint parameters don't currently accept facet filters as inputs — the filtering must be applied client-side. You can fork this API on Parse and revise it to pass facet filter parameters through to narrow results server-side.
Does the API return historical pricing or price change data?+
No. The API returns current pricing tiers from live search results and the lowest calculated USD price on get_product_detail. Historical price tracking is not covered. You can fork this API on Parse and revise it to add a scheduled polling endpoint that stores price snapshots over time.
How does pagination work in `search_by_token`?+
Pagination uses a start offset (zero-based) and a rows count. The response pagination object returns currentPage (calculated as start / rows + 1), pageSize, totalPages, and totalResults. To iterate through all results, increment start by rows on each request until currentPage equals totalPages.
Page content last updated . Spec covers 4 endpoints from arrow.com.
Related APIs in MarketplaceSee all →
mouser.com API
mouser.com API
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.