# Mymoparparts — 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 genuine Mopar OEM parts and accessories to instantly access pricing details and product information for your vehicle repair and maintenance needs. Find exactly what you need with detailed part specifications and current pricing from MyMoparParts.com's complete catalog.

**Category:** Automotive | **Website:** [www.mymoparparts.com/](https://www.mymoparparts.com/) | **Docs:** [parse.bot/marketplace/b7bfa237-7f52-4940-8c55-2764935843c0/mymoparparts-com-api](https://parse.bot/marketplace/b7bfa237-7f52-4940-8c55-2764935843c0/mymoparparts-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-mymoparparts-com-api-b7bfa237/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve full product details for a specific part including pricing (sale price and MSRP), brand, images, description, superseded part numbers, hazmat status, and vehicle fitment. The product_path is obtained from search_parts results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_path` | string | Yes | URL path or full URL to the product page, e.g. 'oem-parts/mopar-brake-pads-68334863aa'. Obtained from search_parts results URL field. |

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

### search_parts

Full-text search across the MyMoparParts catalog by keyword, part number, or VIN. Returns paginated product listings with pricing, brand, and availability. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for results pagination. |
| `query` | string | Yes | Search term: part name keyword, OEM part number, or VIN. |

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