# Digikey (South Korea) — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access data from digikey.kr.

**Category:** E-commerce | **Website:** [www.digikey.kr/ko/products/filter/%EB%8B%A8%EC%9D%BC-fet-mosfet/278?s=N4IgTCBcDaILYHsDOAzApgFxAXQL5A](https://www.digikey.kr/ko/products/filter/%EB%8B%A8%EC%9D%BC-fet-mosfet/278?s=N4IgTCBcDaILYHsDOAzApgFxAXQL5A) | **Docs:** [parse.bot/marketplace/66fb3204-719a-4aea-8c00-f996c61188ad/digikey-kr-api](https://parse.bot/marketplace/66fb3204-719a-4aea-8c00-f996c61188ad/digikey-kr-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-digikey-kr-api-66fb3204/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_mosfets

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Numeric category ID for the product family. 278 is 단일 FET, MOSFET. |
| `category_path` | string | No | URL-encoded category path segment for the product family. |
| `page` | string | No | Page number for display purposes. Actual pagination is controlled by the 's' parameter. |
| `s` | string | No | 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. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-digikey-kr-api-66fb3204/list_mosfets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","category_path":"<string>","page":"<string>","s":"<string>"}'
```
