# Datasheetcatalog — 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.

> Search for electronic component datasheets and access detailed specifications with PDF links, or browse components by manufacturer and category. Quickly find the technical information you need for any electronic component in one centralized catalog.

**Category:** Developer Tools | **Website:** [datasheetcatalog.com/](https://datasheetcatalog.com/) | **Docs:** [parse.bot/marketplace/418c5935-f2ed-44d0-b1b5-51c5ed74a917/datasheetcatalog-com-api](https://parse.bot/marketplace/418c5935-f2ed-44d0-b1b5-51c5ed74a917/datasheetcatalog-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-datasheetcatalog-com-api-418c5935/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_components

Get datasheets listed under a specific component category/function.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | Yes | Category slug from get_category_list |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-datasheetcatalog-com-api-418c5935/get_category_components \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>"}'
```

### get_category_list

Retrieve the full hierarchical list of component categories/functions.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-datasheetcatalog-com-api-418c5935/get_category_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_datasheet_detail

Get detailed information for a specific component datasheet, including manufacturers and PDF links.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | URL of the component detail page |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-datasheetcatalog-com-api-418c5935/get_datasheet_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_manufacturer_components

Get all datasheets/components listed for a specific manufacturer.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `manufacturer_slug` | string | Yes | Manufacturer slug from get_manufacturer_list |
| `page` | integer | No | Page number |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-datasheetcatalog-com-api-418c5935/get_manufacturer_components \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"manufacturer_slug":"<string>","page":"<integer>"}'
```

### get_manufacturer_list

Retrieve the full list of all manufacturers indexed in the catalog.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-datasheetcatalog-com-api-418c5935/get_manufacturer_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_datasheets

Search for datasheets by part name, description, or keyword. Returns list of matching components.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination |
| `query` | string | Yes | Search keyword or part number |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-datasheetcatalog-com-api-418c5935/search_datasheets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
