connect your AI to inventory

AAWChips

Component data for hardware agents.

Find real purchasable parts with stock, pricing, specs, and buy links.

Try:

{
  "query": "100nF 0402 capacitor",
  "count": 3,
  "results": [
    {
      "lcsc": "C152814",
      "mpn": "0402B104K500CT",
      "manufacturer": "Walsin Tech Corp",
      "category": "Capacitors",
      "subcategory": "MLCC - SMD/SMT",
      "package": "0402",
      "stock": 741431,
      "price_tiers": [
        { "min_qty": 1, "unit_price_usd": 0.0077 },
        { "min_qty": 1000, "unit_price_usd": 0.0065 }
      ],
      "normalized": {
        "capacitance_f": 1e-7,
        "voltage_v": 50,
        "tolerance_fraction": 0.1
      },
      "datasheet": "https://...",
      "links": [
        { "source": "LCSC", "verified": true, "url": "https://..." },
        { "source": "JLCPCB", "verified": true, "url": "https://..." },
        { "source": "DigiKey", "verified": false, "url": "https://..." },
        { "source": "AliExpress", "verified": false, "url": "https://..." }
      ],
      "score": 202.8701
    }
  ]
}

apply access

Request an API key

AAWChips is experimental and quota-limited. Tell me what you are building and get a key.

Quickstart

# CLI
npm install -g aawchips
export AAWCHIPS_API_KEY=...
aawchips search "10k 1% 0603 resistor"

# HTTP
curl -G "https://api.aawchips.aawlab.com/search" \
  -H "X-API-Key: $AAWCHIPS_API_KEY" \
  --data-urlencode "q=100nF 0402 capacitor" \
  -d "limit=3"

after you get a key

Connect your agent

Use AAWChips from your AI agent, CLI, or backend.