# Mann Filter — 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 and explore MANN-FILTER's complete product catalog to find filter specifications, vehicle compatibility information, cross-references, and product images. Discover new products and retrieve information on discontinued items.

**Category:** Automotive | **Website:** [mann-filter.com/](https://mann-filter.com/) | **Docs:** [parse.bot/marketplace/fcebd79e-a2ef-4265-abb5-459af12393ac/mann-filter-com-api](https://parse.bot/marketplace/fcebd79e-a2ef-4265-abb5-459af12393ac/mann-filter-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-mann-filter-com-api-fcebd79e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_discontinued_products

Retrieve discontinued or replaced MANN-FILTER products with successor information when available. Paginates via integer page counter. Products include attributes and optional successor product references.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `page_size` | integer | No | Number of results per page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mann-filter-com-api-fcebd79e/get_discontinued_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>"}'
```

### get_new_products

Retrieve recently released MANN-FILTER products available since a given date. Returns products sorted by release date descending. Defaults to products released in the last 120 days when no date is provided.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Filter products available since this date (YYYY-MM-DD format). Omitting defaults to 120 days before today. |
| `page_size` | integer | No | Maximum number of results to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mann-filter-com-api-fcebd79e/get_new_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","page_size":"<integer>"}'
```

### get_product_detail

Retrieve full details for a specific filter by its human-readable SKU. Returns the single product with all attributes, vehicle applications, and cross-references. The SKU should be in display format with spaces (e.g. 'HU 816 x'). Returns input_not_found when no product matches.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sku` | string | Yes | Product SKU in human-readable format with spaces (e.g. 'HU 816 x', 'C 2212'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mann-filter-com-api-fcebd79e/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sku":"<string>"}'
```

### get_product_images

Retrieve image URLs and metadata for a specific filter product. Returns image hits with dimensions, MIME types, Scene7 metadata, and a URI template for requesting different image sizes by width. Requires human-readable SKU format.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sku` | string | Yes | Product SKU in human-readable format with spaces (e.g. 'HU 816 x', 'C 2212'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mann-filter-com-api-fcebd79e/get_product_images \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sku":"<string>"}'
```

### search_products

Full-text search across the MANN-FILTER catalog by part number, vehicle name, or cross-reference number. Returns matching products with attributes, vehicle application matches, and cross-references. Paginates via integer page counter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `page_size` | integer | No | Number of results per page. |
| `query` | string | Yes | Search keyword (part number, vehicle name, or cross-reference number). |

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