Discover/we-online API
live

we-online APIwe-online.com

Search and retrieve electronic component specs, categories, and datasheets from Würth Elektronik's catalog via 4 structured REST endpoints.

Endpoint health
verified 4d ago
get_product_categories
search_products
get_series_articles
get_article_detail
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the we-online API?

The we-online.com API provides 4 endpoints to query the Würth Elektronik electronic components catalog, returning product categories, series articles, and per-article electrical specifications with datasheet URLs. Use search_products to run full-text or order-code searches across the full catalog, or get_article_detail to fetch structured specs for a single SKU. Results include lifecycle status, spec key-value pairs, and direct links to PDF datasheets.

Try it
Search keyword or order code (e.g. 'inductor', '74479614', 'WE-MI')
api.parse.bot/scraper/0b90659a-d40d-4059-b7e4-a3155c5c0482/<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/0b90659a-d40d-4059-b7e4-a3155c5c0482/search_products?query=inductor' \
  -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 we-online-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.

from parse_apis.wurth_elektronik_product_api import WurthElektronik, Product, Category, Article

client = WurthElektronik()

# Search for inductor products
for product in client.products.search(query="inductor"):
    print(product.title, product.url, product.type)

# List all product categories
for category in client.categories.list():
    print(category.name, category.id, category.url)

# Get all articles in a specific series
for article in client.articles.list_by_series(series_code="WE-MI"):
    print(article.order_code, article.status, article.datasheet_url)

# Get detailed specs for a specific article
detail = client.articles.get(order_code="74479614")
print(detail.order_code, detail.status)
All endpoints · 4 totalmissing one? ·

Full-text search across the Wurth Elektronik electronic components catalog. Matches product series and articles by keyword or order code. Returns a flat list of matching items with title, URL, and type classification. No pagination - server returns the top matches in one response.

Input
ParamTypeDescription
queryrequiredstringSearch keyword or order code (e.g. 'inductor', '74479614', 'WE-MI')
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of results returned",
    "results": "array of product objects with title, url, and type fields"
  },
  "sample": {
    "data": {
      "total": 15,
      "results": [
        {
          "url": "https://www.we-online.com/en/components/products/category/1091207",
          "type": "series",
          "title": "Single Coil Power Inductors"
        },
        {
          "url": "https://www.we-online.com/en/components/products/category/1382045",
          "type": "series",
          "title": "RF Inductors"
        }
      ]
    },
    "status": "success"
  }
}

About the we-online API

Search and Category Navigation

search_products accepts a free-text keyword or a numeric order code (e.g. '74479614' or 'WE-MI') and returns a flat list of matching items, each with a title, url, and type field that classifies the result as a series or article. There is no pagination — the endpoint returns the top server-side matches in a single response. To browse without a search term, get_product_categories returns the full category tree with name, url, and id fields covering passive, active, electromechanical, optoelectronic, thermal, and automotive product groups.

Series and Article Data

get_series_articles accepts a series_code — either a named series like 'WE-MI' or a category path string from get_product_categories such as 'pbs/emc_components' — and returns every article (SKU) in that series. Each article object includes an order_code, a specs key-value map of electrical and physical parameters, a status string (e.g. 'Active'), and a datasheet_url pointing to the PDF. The total field in the response gives the article count for that series.

Single-Article Detail

get_article_detail takes a single order_code and returns the same structured shape: a specs object, status, and datasheet_url. The spec keys vary by component type — an inductor article will have different parameter names than a connector article. Order codes can be sourced from search_products or get_series_articles results, making the endpoints composable for catalog traversal workflows.

Reliability & maintenanceVerified

The we-online API is a managed, monitored endpoint for we-online.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when we-online.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 we-online.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
4d 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
  • Automated BOM validation: resolve order codes to lifecycle status and specs without manual catalog lookups
  • Datasheet aggregation: collect datasheet_url fields across a product series for offline reference libraries
  • Component cross-reference: search by series name or keyword to map Würth part numbers to electrical parameters
  • Category-driven product discovery: enumerate all subcategories and series to build internal component databases
  • Lifecycle monitoring: poll status fields for specific order codes to detect when parts move out of active status
  • EDA tool enrichment: feed structured spec key-value pairs into schematic or simulation tools for Würth components
  • Procurement filtering: retrieve all articles in a series and filter by spec values to shortlist candidate parts
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 Würth Elektronik provide an official developer API?+
Würth Elektronik does not currently publish a public developer API for catalog data. The we-online.com API on Parse provides structured access to the same product, series, and specification data available on we-online.com.
What does get_series_articles return, and how do specs vary across component types?+
It returns an articles array where each item has an order_code, a specs object of key-value electrical and physical parameters, a status string, and a datasheet_url. The keys inside specs are not fixed — they reflect the attributes relevant to that component family, so an EMC component series will have different spec keys than a power inductor or connector series.
Does search_products support pagination or filtering by category?+
No — search_products returns the top matches in a single response with no pagination or category filter parameter. For category-scoped browsing, use get_product_categories to get a category id or path, then pass that path to get_series_articles to enumerate articles within a specific product group.
Does the API expose pricing or stock/availability data for articles?+
Not currently. The API covers electrical specifications, lifecycle status, and datasheet URLs. Pricing and real-time inventory are not included in any endpoint response. You can fork the API on Parse and revise it to add an endpoint targeting availability data.
Can I retrieve parametric search results — for example, all inductors above a specific inductance value?+
Not directly. The API does not expose a parametric filter endpoint. You can retrieve all articles for a series via get_series_articles, which returns structured specs key-value pairs, and then apply your own filtering logic client-side. You can also fork the API on Parse and revise it to add a parametric filter endpoint.
Page content last updated . Spec covers 4 endpoints from we-online.com.
Related APIs in EcommerceSee all →
wlw.de API
Search for B2B suppliers and manufacturers on wlw.de, view detailed company profiles with contact information and product catalogs, and discover featured businesses and products. Find the right industrial suppliers and vendors quickly by browsing company details and product listings across Germany's largest B2B marketplace.
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.
wmsc.lcsc.com API
Search and retrieve detailed information about electronics components from LCSC, including product specifications, pricing, stock levels, and categories. Quickly find component data, identify parts, and access real-time availability to streamline your electronics sourcing and procurement.
wlw.at API
Search for products and suppliers on Austria's wlw.at B2B marketplace, then retrieve detailed company information including contact numbers, VAT IDs, and business details. Browse product categories and discover verified suppliers to streamline your procurement process.
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.
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.
euronics.it API
Browse and search the complete Euronics Italy product catalog with real-time pricing information across all categories. Find exactly what you're looking for with powerful keyword search or explore products by category with full pagination support.
pccomponentes.com API
Search and browse PC components across categories and retrieve detailed product information including technical specifications, pricing, availability, and customer reviews. Ideal for comparing hardware options across processors, graphics cards, laptops, and more.