Discover/Arrow API
live

Arrow APIarrow.com

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

Endpoint health
verified 17h ago
lookup_manufacturer
search_by_token
search_by_list
get_product_detail
4/4 passing latest checkself-healing
Endpoints
4
Updated
22d ago

What is the Arrow 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.

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.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/552c786b-18f1-4a60-ad01-97304694eebe/search_by_token?rows=5&start=0&search_token=NE555' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace arrow-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Arrow Electronics component search, batch lookup, product details, and manufacturer listing."""
from parse_apis.arrow_electronics_api import Arrow, Rows, ProductNotFound

client = Arrow()

# Search for timer ICs by keyword — limit caps total items fetched.
for part in client.searchproducts.search(search_token="NE555", rows=Rows._5, limit=3):
    print(part.full_part, part.manufacturer_name, part.calculated_price, part.part_status)

# Batch search for multiple parts at once.
for batch in client.batchsearchresults.search(parts_json='["LM358", "NE555"]', limit=2):
    print(batch.query, batch.num_found)

# Retrieve full product details by URL path.
product = client.products.get(part_url="/en/products/ne555p/texas-instruments")
print(product.part_number, product.manufacturer, product.total_stock, product.availability)

# Handle a product that doesn't exist.
try:
    missing = client.products.get(part_url="/en/products/nonexistent123/unknown-mfr")
    print(missing.part_number)
except ProductNotFound as exc:
    print(f"Product not found: {exc.part_url}")

# List manufacturers available on Arrow.com.
for mfr in client.manufacturers.list(limit=5):
    print(mfr.manufacturer_name, mfr.product_count)

print("exercised: searchproducts.search / batchsearchresults.search / products.get / manufacturers.list / ProductNotFound")
All endpoints · 4 totalmissing one? ·

Search for electronic components by part number or keyword. Returns matching products with manufacturer info, descriptions, pricing tiers, availability, compliance data, and category taxonomy. Paginates via start/rows offset; each page carries the full facet set and taxonomy tree for the current query.

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": "productlinenamefacet",
          "name": "Product Line",
          "values": [
            {
              "count": 24,
              "value": "Timers"
            }
          ]
        }
      ],
      "products": [
        {
          "euRohs": "Compliant",
          "mfrSeo": "texas-instruments",
          "partId": "2049175",
          "mfrName": "Texas Instruments",
          "partSeo": "ne555p",
          "eccnCode": "EAR99",
          "fullPart": "NE555P",
          "partStatus": "Active",
          "largeImageUrl": "//static6.arrow.com/aropdfconversion/arrowimages/2e4314377ac7a084d278da72652911be69a524f8/p0008a.jpg",
          "calculatedPrice": "0.25068493150684934",
          "productLineName": "Timers",
          "calculatedQuantity": "67292",
          "storedPartDescription": "Standard Timer Single 0°C 70°C 8-Pin PDIP Tube"
        }
      ],
      "taxonomy": [
        {
          "categories": [
            {
              "id": "11181",
              "code": "Clock and Timing",
              "name": "Clock and Timing"
            }
          ],
          "productLineType": "Semiconductor"
        }
      ],
      "pagination": {
        "pageSize": 25,
        "totalPages": 2,
        "currentPage": 1,
        "totalResults": 27
      },
      "resultCount": "27",
      "searchKeyword": [
        "ne555"
      ]
    },
    "status": "success"
  }
}

About the Arrow API

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.

Reliability & maintenanceVerified

The Arrow API is a managed, monitored endpoint for arrow.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when arrow.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official arrow.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
17h ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
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,000100 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 →
octopart.com API
Search electronic parts and get instant access to pricing, stock levels, and specs from multiple distributors in one place. Browse manufacturers and categories to compare availability and find the best deals on components you need.
element14.com API
Search and browse Newark (element14)'s electronic components catalog to find product details, pricing, stock levels, and technical documentation. Retrieve specifications, explore categories and manufacturers, and access real-time inventory information to compare components.
digikey.com API
Access data from digikey.com.
componentsearchengine.com API
Search for electronic components and access detailed specifications including pricing, datasheets, and 3D models from a comprehensive component database. Browse top trending components, retrieve in-depth metadata, and integrate real-time component information into your sourcing and design workflows.
mouser.com API
mouser.com API
anker.com API
Search and browse Anker products to find prices, images, variants, and availability information directly from their online store. Get detailed product specifications to compare items and make informed purchasing decisions.
datasheetcatalog.com API
Search for electronic component datasheets and access detailed specifications with PDF links, or browse components by manufacturer and category. Quickly find the technical information you need for any electronic component in one centralized catalog.
adafruit.com API
Browse and search the complete Adafruit electronics catalog to find product details, pricing, availability, and stock status across categories like magnets and motor components. Discover new arrivals and featured products to stay updated on the latest electronics and components available.