# Componentsearchengine — 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 components and access detailed specifications including pricing, datasheets, and 3D models from a comprehensive component database. Browse top trending components, retrieve in-depth metadata, and integrate real-time component information into your sourcing and design workflows.

**Category:** Developer Tools | **Website:** [componentsearchengine.com/](https://componentsearchengine.com/) | **Docs:** [parse.bot/marketplace/c9f0e8d5-4318-4f6b-b9b2-32c3ef898591/componentsearchengine-com-api](https://parse.bot/marketplace/c9f0e8d5-4318-4f6b-b9b2-32c3ef898591/componentsearchengine-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-componentsearchengine-com-api-c9f0e8d5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_component_details

Fetch full details for one component identified by part number and manufacturer. Returns the component description scraped from the detail page, plus rich metadata from the suggestion API including recognized parametric values (voltage, current, power ratings, package codes) and related part suggestions from other manufacturers. The metadata block may be empty when the suggestion API has no data for the given component.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `manufacturer` | string | Yes | The manufacturer name (e.g. 'onsemi'). |
| `part_number` | string | Yes | The component part number (e.g. 'BAV99'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-componentsearchengine-com-api-c9f0e8d5/get_component_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"manufacturer":"<string>","part_number":"<string>"}'
```

### get_popular_components

Retrieve the most popular electronic components ranked by usage count. Each component carries part number, manufacturer, component class, 3D/ECAD availability flags, and a download count reflecting design-tool usage. The response is a flat list ordered by descending count; no pagination — a single request returns all requested items.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of popular components to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-componentsearchengine-com-api-c9f0e8d5/get_popular_components \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### search_components

Full-text search over electronic components by keyword or part number. Returns paginated results (up to 25 per page) parsed from HTML search results. Each result includes part number, manufacturer, description, package category, and a direct URL to the component detail page. total_results reports the server-side hit count when available.

**Estimated cost:** Metered

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

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