# Digikey — 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.com.

**Category:** E-commerce | **Website:** [digikey.com/](https://digikey.com/) | **Docs:** [parse.bot/marketplace/152ec23d-e0f2-4373-8f98-702a2d208742/digikey-com-api](https://parse.bot/marketplace/152ec23d-e0f2-4373-8f98-702a2d208742/digikey-com-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-com-api-152ec23d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

Retrieve category metadata including name, description, product count, breadcrumb navigation trail, and any subcategories. Use category IDs discovered from breadcrumbs or subcategory listings to navigate the taxonomy.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Category ID to get information for (e.g. '3' for Capacitors, '48' for Unclassified) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-digikey-com-api-152ec23d/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>"}'
```

### get_manufacturers

List all manufacturers that have products in a given category, with per-manufacturer product counts. Returns the full manufacturer roster for the category — useful for filtering or faceted navigation.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Category ID to get manufacturers for (e.g. '48' for Unclassified, '3' for Capacitors) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-digikey-com-api-152ec23d/get_manufacturers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>"}'
```

### get_product_details

Look up products by manufacturer part number or DigiKey part number via the suggestions API. Returns the best match and all matching variants. Useful for finding the exact DigiKey product URL and part number from a known MPN.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `part_number` | string | Yes | Manufacturer part number or DigiKey part number to look up (e.g. 'LM555CN', 'ATmega328P-PU') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-digikey-com-api-152ec23d/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"part_number":"<string>"}'
```

### keyword_search

Full-text keyword search across DigiKey's electronic component catalog. Returns products with pricing, stock levels, and specification data. Filterable by category. Paginates via integer page counter; each page returns up to `limit` items.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Category ID to filter results within a specific category |
| `limit` | integer | No | Maximum number of results to return per page |
| `page` | integer | No | Page number for pagination |
| `query` | string | Yes | Search keyword or term (e.g. 'resistor', 'capacitor 100nF', '10k ohm') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-digikey-com-api-152ec23d/keyword_search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","limit":"<integer>","page":"<integer>","query":"<string>"}'
```
