# JLCPCB Parts Finder — In-Stock Component Search (`amicable_grid/jlcpcb-parts-finder`) Actor

Search JLCPCB's in-stock electronics components (resistors, capacitors, inductors, MOSFETs, ICs, LEDs) by electrical specifications. Returns matching parts with stock counts and unit prices. Perfect for automating BOM generation and design validation.

- **URL**: https://apify.com/amicable\_grid/jlcpcb-parts-finder.md
- **Developed by:** [Satyam Das](https://apify.com/amicable_grid) (community)
- **Categories:** Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.00001 / result

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

<p align="center">
  <img src="https://img.icons8.com/fluency/96/circuit.png" alt="JLCPCB Parts Finder" width="80" />
</p>

<h1 align="center">JLCPCB Parts Finder</h1>

<p align="center">
  <strong>Find in-stock electronic components by specification — instantly.</strong>
</p>

<p align="center">
  <a href="https://apify.com/amicable_grid/jlcpcb-parts-finder"><img src="https://img.shields.io/badge/Try_on_Apify-264CE4?style=for-the-badge&logo=apify" alt="Try on Apify" /></a>
  <img src="https://img.shields.io/badge/Component_Types-6-blue?style=for-the-badge" alt="6 component types" />
  <img src="https://img.shields.io/badge/No_API_Key_Required-✓-brightgreen?style=for-the-badge" alt="No API key" />
</p>

---

### What It Does

Search **JLCPCB's entire in-stock catalog** of electronic components by electrical specifications. Instead of browsing pages of parts, describe what you need and get back matching components with stock counts, unit prices, and full specs.

**Supported component types:**

| Type | Search Filters |
|------|----------------|
| 🔲 **Resistors** | Resistance, package, tolerance, power |
| 🔵 **Capacitors** | Capacitance, package, voltage, tolerance |
| 🟡 **Inductors** | Inductance, package, current, tolerance |
| 🔴 **LEDs** | Color, package, voltage, current |
| ⚡ **MOSFETs** | Package, voltage, current, channel type |
| 🧠 **ICs** | Package, manufacturer, category |

---

### Use Cases

- **BOM generation** — automate finding the right parts for your circuit design
- **Design validation** — verify that components exist in JLCPCB stock before finalizing
- **Price comparison** — find the cheapest in-stock part matching your specs
- **Alt-part discovery** — find substitute components when your primary choice is out of stock

---

### Input

```json
{
  "component_type": "resistor",
  "resistance": "10k",
  "package": "0603",
  "tolerance": "1%",
  "max_results": 50
}
````

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `component_type` | string | ✅ | One of: `resistor`, `capacitor`, `inductor`, `led`, `mosfet`, `ic` |
| `resistance` | string | ❌ | Resistance value (e.g. `1k`, `4.7k`, `10k`). Resistors only. |
| `capacitance` | string | ❌ | Capacitance value (e.g. `100n`, `10u`, `22p`). Capacitors only. |
| `inductance` | string | ❌ | Inductance value (e.g. `10uH`, `4.7uH`). Inductors only. |
| `package` | string | ❌ | Package size (e.g. `0402`, `0603`, `0805`) |
| `tolerance` | string | ❌ | Tolerance (e.g. `1%`, `5%`, `10%`) |
| `voltage` | string | ❌ | Voltage rating (e.g. `10V`, `50V`, `100V`) |
| `max_results` | integer | ❌ | Max parts to return (1–500, default 50) |

***

### Output

Each result includes:

```json
{
  "lcsc": 123456,
  "mfr": "0603WAF1002T5E",
  "package": "0603",
  "stock": 50000,
  "price1": 0.0009,
  "resistance": 10000,
  "tolerance": "1%"
}
```

| Field | Description |
|-------|-------------|
| `lcsc` | Unique LCSC/JLCPCB part number |
| `mfr` | Manufacturer part number |
| `package` | Component footprint (0402, 0603, etc.) |
| `stock` | Current in-stock quantity |
| `price1` | Unit price in USD |
| Component-specific fields | `resistance`, `capacitance`, `inductance`, `voltage`, `tolerance`, `color` |

***

### Examples

#### Find 10kΩ 0603 resistors with 1% tolerance

```json
{
  "component_type": "resistor",
  "resistance": "10k",
  "package": "0603",
  "tolerance": "1%",
  "max_results": 20
}
```

#### Find 100nF capacitors rated for 50V

```json
{
  "component_type": "capacitor",
  "capacitance": "100n",
  "voltage": "50V",
  "max_results": 25
}
```

#### Find red 0805 LEDs

```json
{
  "component_type": "led",
  "color": "red",
  "package": "0805",
  "max_results": 10
}
```

***

### Data Source

All data comes from **[jlcsearch.tscircuit.com](https://jlcsearch.tscircuit.com)** — a community-maintained search index of JLCPCB's in-stock inventory. No API key required.

***

### Pricing

Pay-per-event pricing. You're charged only for results returned — no charge for empty searches.

***

### Built By

**Satyam Das** — [amicable\_grid on Apify](https://apify.com/amicable_grid)

# Actor input Schema

## `component_type` (type: `string`):

Type of electronic component to search.

## `resistance` (type: `string`):

Resistance value (e.g. '1k', '4.7k', '10k'). For resistors only.

## `capacitance` (type: `string`):

Capacitance value (e.g. '100n', '10u', '22p'). For capacitors only.

## `inductance` (type: `string`):

Inductance value (e.g. '10uH', '4.7uH'). For inductors only.

## `package` (type: `string`):

Component package size (e.g. '0402', '0603', '0805').

## `tolerance` (type: `string`):

Tolerance (e.g. '1%', '5%', '10%').

## `voltage` (type: `string`):

Voltage rating (e.g. '10V', '50V', '100V').

## `max_results` (type: `integer`):

Maximum number of parts to return.

## Actor input object example

```json
{
  "component_type": "resistor",
  "resistance": "",
  "capacitance": "",
  "inductance": "",
  "package": "",
  "tolerance": "",
  "voltage": "",
  "max_results": 50
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("amicable_grid/jlcpcb-parts-finder").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("amicable_grid/jlcpcb-parts-finder").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call amicable_grid/jlcpcb-parts-finder --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=amicable_grid/jlcpcb-parts-finder",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "JLCPCB Parts Finder — In-Stock Component Search",
        "description": "Search JLCPCB's in-stock electronics components (resistors, capacitors, inductors, MOSFETs, ICs, LEDs) by electrical specifications. Returns matching parts with stock counts and unit prices. Perfect for automating BOM generation and design validation.",
        "version": "0.1",
        "x-build-id": "qg6BqtVZNSu4dZgr9"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/amicable_grid~jlcpcb-parts-finder/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-amicable_grid-jlcpcb-parts-finder",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/amicable_grid~jlcpcb-parts-finder/runs": {
            "post": {
                "operationId": "runs-sync-amicable_grid-jlcpcb-parts-finder",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/amicable_grid~jlcpcb-parts-finder/run-sync": {
            "post": {
                "operationId": "run-sync-amicable_grid-jlcpcb-parts-finder",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "component_type"
                ],
                "properties": {
                    "component_type": {
                        "title": "Component Type",
                        "enum": [
                            "resistor",
                            "capacitor",
                            "inductor",
                            "led",
                            "mosfet",
                            "ic"
                        ],
                        "type": "string",
                        "description": "Type of electronic component to search.",
                        "default": "resistor"
                    },
                    "resistance": {
                        "title": "Resistance",
                        "type": "string",
                        "description": "Resistance value (e.g. '1k', '4.7k', '10k'). For resistors only.",
                        "default": ""
                    },
                    "capacitance": {
                        "title": "Capacitance",
                        "type": "string",
                        "description": "Capacitance value (e.g. '100n', '10u', '22p'). For capacitors only.",
                        "default": ""
                    },
                    "inductance": {
                        "title": "Inductance",
                        "type": "string",
                        "description": "Inductance value (e.g. '10uH', '4.7uH'). For inductors only.",
                        "default": ""
                    },
                    "package": {
                        "title": "Package",
                        "type": "string",
                        "description": "Component package size (e.g. '0402', '0603', '0805').",
                        "default": ""
                    },
                    "tolerance": {
                        "title": "Tolerance",
                        "type": "string",
                        "description": "Tolerance (e.g. '1%', '5%', '10%').",
                        "default": ""
                    },
                    "voltage": {
                        "title": "Voltage",
                        "type": "string",
                        "description": "Voltage rating (e.g. '10V', '50V', '100V').",
                        "default": ""
                    },
                    "max_results": {
                        "title": "Maximum Results",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum number of parts to return.",
                        "default": 50
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
