Discover/digikey.kr API
live

digikey.kr APIwww.digikey.kr

Retrieve MOSFET product listings from DigiKey Korea with part numbers, manufacturers, KRW unit prices, Vds ratings, and stock quantities via one API endpoint.

Endpoint health
verified 3h ago
list_mosfets
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago
Try it
Encoded filter and pagination state from the DigiKey URL 's' parameter. The default value applies the in-stock filter for page 1. To get different pages or filters, copy the 's' value from the DigiKey website URL after applying desired filters and navigating to the desired page.
Page number for display purposes. Actual pagination is controlled by the 's' parameter.
Numeric category ID for the product family. 278 is 단일 FET, MOSFET.
URL-encoded category path segment for the product family.
api.parse.bot/scraper/a3582e75-aad4-4dd4-82c1-b527c2f05f5c/<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/a3582e75-aad4-4dd4-82c1-b527c2f05f5c/list_mosfets?s=N4IgjCBcoLQExVAYygFwE4FcCmAaEA9lANogCsIAugL7X4KSkC2BAzgGbapXVA&page=1&category_id=278&category_path=%25EB%258B%25A8%25EC%259D%25BC-fet-mosfet' \
  -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 digikey-kr-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.


"""Walkthrough: DigiKey Korea MOSFET API — list in-stock MOSFETs with specs."""
from parse_apis.digikey_kr_api import DigiKey, InvalidPage

client = DigiKey()

# List in-stock MOSFETs with default filter (page 1, 단일 FET MOSFET category)
for mosfet in client.mosfets.list(limit=5):
    print(f"{mosfet.part_number} | {mosfet.manufacturer} | {mosfet.unit_price} | Vds={mosfet.vds}")

# Narrow results to a specific category by ID
first = client.mosfets.list(category_id="278", limit=1).first()
if first:
    print(f"\nFirst result: {first.part_number} by {first.manufacturer}")
    print(f"  Price: {first.unit_price}, Vds: {first.vds}, Stock: {first.quantity_available}")

# Handle invalid page error
try:
    client.mosfets.list(category_id="278", limit=3)
except InvalidPage as exc:
    print(f"Invalid input: {exc}")

print("\nexercised: mosfets.list (default filter / by category_id / error handling)")
All endpoints · 1 totalmissing one? ·

List MOSFET products from DigiKey Korea's product catalog. Returns part numbers, manufacturers, unit prices (KRW), and Vds ratings. By default uses the in-stock filter to exclude out-of-stock items. Each page returns up to 25 products. The filter state (including pagination) is encoded in the 's' parameter which comes from the DigiKey URL. Results are ordered by DigiKey's recommended sort.

Input
ParamTypeDescription
sstringEncoded filter and pagination state from the DigiKey URL 's' parameter. The default value applies the in-stock filter for page 1. To get different pages or filters, copy the 's' value from the DigiKey website URL after applying desired filters and navigating to the desired page.
pagestringPage number for display purposes. Actual pagination is controlled by the 's' parameter.
category_idstringNumeric category ID for the product family. 278 is 단일 FET, MOSFET.
category_pathstringURL-encoded category path segment for the product family.
Response
{
  "type": "object",
  "fields": {
    "page": "integer page number",
    "per_page": "integer number of products returned on this page",
    "products": "array of MOSFET product objects with part_number, manufacturer, unit_price, vds, quantity_available, product_id",
    "total_count": "string representing total number of matching products"
  },
  "sample": {
    "data": {
      "page": 1,
      "per_page": 24,
      "products": [
        {
          "vds": "60 V",
          "product_id": "10416554",
          "unit_price": "219.00000",
          "part_number": "2N7002NXAKR",
          "manufacturer": "Nexperia USA Inc.",
          "quantity_available": "346,764"
        },
        {
          "vds": "60 V",
          "product_id": "4020917",
          "unit_price": "219.00000",
          "part_number": "NX7002AK,215",
          "manufacturer": "Nexperia USA Inc.",
          "quantity_available": "24,538"
        }
      ],
      "total_count": "22,042"
    },
    "status": "success"
  }
}

About the digikey.kr API

The DigiKey Korea MOSFET API provides access to single FET/MOSFET product listings from digikey.kr through one endpoint, list_mosfets, returning up to 6 structured fields per product including part number, manufacturer, unit price in KRW, Vds rating, and available quantity. The endpoint mirrors DigiKey Korea's category 278 (단일 FET, MOSFET) and defaults to in-stock items only, making it practical for sourcing workflows that need live Korean pricing.

What the API Returns

The list_mosfets endpoint returns an array of MOSFET product objects under the products field. Each object contains part_number, manufacturer, unit_price (in Korean Won), vds (drain-source voltage rating), quantity_available, and product_id. The response also includes page, per_page, and total_count so you can page through the full catalog result set.

Filtering and Pagination

Pagination and filtering are controlled by the s parameter, which corresponds to the encoded filter state in DigiKey Korea's product URL. The default value applies an in-stock filter, so out-of-stock parts are excluded unless you supply a different s value. The page parameter is for display bookkeeping; actual page position in the result set is determined by the s string. Each response returns up to 25 products. The category_id parameter (default 278 for 단일 FET, MOSFET) and category_path can be passed to target a different product family if the encoded s state is adjusted accordingly.

Data Scope and Freshness

All prices are in KRW and reflect DigiKey Korea's listed unit pricing. The total_count field is returned as a string and represents the total number of matching products in the filtered catalog view, giving you the information to calculate how many pages to retrieve. The API covers only the MOSFET category by default; it does not span DigiKey Korea's full component catalog across other passive or active component families.

Reliability & maintenanceVerified

The digikey.kr API is a managed, monitored endpoint for www.digikey.kr — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when www.digikey.kr 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 www.digikey.kr 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
3h ago
Latest check
1/1 endpoint 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
  • Build a KRW price tracker for specific MOSFET part numbers sourced from DigiKey Korea
  • Monitor in-stock availability of MOSFETs by querying quantity_available across catalog pages
  • Compare Vds ratings across manufacturers for a given voltage range using per-product vds fields
  • Automate BOM (bill of materials) pricing by looking up unit_price for part numbers in KRW
  • Populate an internal component database with DigiKey Korea product_ids and manufacturer names
  • Alert on restocking events by tracking quantity_available changes for previously out-of-stock 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 DigiKey have an official developer API?+
Yes. DigiKey offers an official API at https://developer.digikey.com, which requires business registration and OAuth credentials. That API targets global inventory and may differ in regional pricing coverage from digikey.kr.
What does the list_mosfets endpoint return for each product?+
Each object in the products array includes part_number, manufacturer, unit_price (KRW), vds (drain-source voltage), quantity_available, and product_id. The response-level fields total_count, page, and per_page let you determine how many pages exist for a given filter state.
Does the API return out-of-stock MOSFETs?+
The default s parameter applies an in-stock filter, so only items with available stock are returned by default. You can supply a different s value reflecting a URL filter state that omits the in-stock constraint to include out-of-stock listings.
Does the API cover other DigiKey Korea component categories beyond MOSFETs?+
Not currently. The API is scoped to category 278 (단일 FET, MOSFET) on digikey.kr. Other component families such as resistors, capacitors, or IGBTs are not covered. You can fork this API on Parse and revise it to target a different category_id and category_path to add coverage for another product family.
Are datasheet links or package/footprint details included in the response?+
Not currently. The response fields are limited to part_number, manufacturer, unit_price, vds, quantity_available, and product_id. Datasheet URLs and package or footprint specifications are not returned. You can fork this API on Parse and revise it to add those fields if they are available in the source catalog view.
Page content last updated . Spec covers 1 endpoint from www.digikey.kr.
Related APIs in EcommerceSee all →
walmart.com API
Retrieve product data from Walmart.com including pricing, descriptions, availability, reviews, and category listings. Access real-time product information to search by keyword, look up items by ID or URL, and browse department categories.
homedepot.com API
Search and browse Home Depot's product catalog to compare pricing, check real-time availability, and review detailed product specifications. Find products across all categories, look up store locations and hours, and check fulfillment options including in-store pickup and delivery.
amazon.co.uk API
Access data from amazon.co.uk.
ikea.com API
Search and browse IKEA's full product catalog to find items by category, compare measurements, read customer reviews, and check real-time store availability and current deals. Discover new arrivals and best-selling products to help you shop smarter and find exactly what you need.
newegg.com API
Search Newegg's product catalog and retrieve listings, specifications, customer reviews, Q&A, category trees, and daily deals.
amazon.fr API
Scrape product data from Amazon.fr, including search results, product details, specifications, seller offers, customer reviews, and current deals.
idealo.de API
Search for products on Idealo.de and retrieve detailed information including current seller offers, price history, technical specifications, and user and expert reviews. Compare prices across sellers and access comprehensive product data to evaluate deals.
zara.com API
Shop Zara's entire catalog by browsing categories, searching for specific items, and viewing detailed product information including measurements and related products. Find nearby store locations, check real-time inventory availability, and get shipping details all in one place.