MANN-FILTER APImann-filter.com ↗
Access MANN-FILTER's filter catalog via API: search by part number or vehicle, get product details, images, cross-references, new releases, and discontinued items.
What is the MANN-FILTER API?
The MANN-FILTER API exposes 5 endpoints covering the full MANN-FILTER product catalog, including part search, detailed product specs, vehicle compatibility lists, and image retrieval. The search_products endpoint accepts part numbers, vehicle names, or cross-reference numbers and returns matching products, application lists, and cross-reference data in a single response. It also surfaces recently released and discontinued products with successor information.
curl -X GET 'https://api.parse.bot/scraper/ca128cb8-1c2d-4d9a-82c7-5afbaf2cbd46/search_products?page=1&query=oil+filter&page_size=5' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace mann-filter-com-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
from parse_apis.mann_filter_product_api import MannFilter, Product, ProductImage, NewProduct, DiscontinuedProduct, ProductNotFound
client = MannFilter()
# Search for oil filters across the catalog
for product in client.products.search(query="oil filter", page_size=5, limit=10):
print(product.sku, product.name, product.url_key)
for attr in product.attributes:
print(f" {attr.key}: {attr.value}")
# Fetch full product detail by SKU
detail = client.products.get(sku="HU 816 x")
print(detail.sku, detail.name)
for attr in detail.attributes:
print(f" {attr.key}: {attr.value}, admin: {attr.admin_value}")
# Get images for a product
for img in detail.images():
print(img.link, img.mime_type, img.uri_template)
print(img.dimension.width, img.dimension.height)
# List recently released products
for new_prod in client.newproducts.list(date="2026-01-01", page_size=10):
print(new_prod.sku, new_prod.name, new_prod.available_since, new_prod.url_key)
# List discontinued products
for disc in client.discontinuedproducts.list(page_size=5):
print(disc.sku, disc.url_key, disc.successor_product)
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.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| queryrequired | string | Search keyword (part number, vehicle name, or cross-reference number). |
| page_size | integer | Number of results per page. |
{
"type": "object",
"fields": {
"items": "array of product objects with sku, urlKey, name, attributes, and references",
"pageSize": "integer page size",
"totalCount": "integer total matching products",
"totalPages": "integer total pages available",
"currentPage": "integer current page number",
"applications": "array of vehicle application matches",
"crossReference": "object containing cross-reference items and pagination info"
},
"sample": {
"data": {
"items": [
{
"sku": "6220152911_MANN-FILTER",
"name": "6220152911_MANN-FILTER",
"urlKey": "6220152911_mann-filter",
"attributes": [
{
"key": "application",
"value": "OFF-HIGHWAY APPLICATIONS",
"adminValue": "3"
}
],
"references": []
}
],
"pageSize": 3,
"totalCount": 1516,
"totalPages": 506,
"currentPage": 1,
"applications": [],
"crossReference": {
"items": [],
"totalCount": 0
}
},
"status": "success"
}
}About the MANN-FILTER API
Search and Product Detail
The search_products endpoint accepts a required query string — a part number like HU 816 x, a vehicle name, or a competitor cross-reference number — and returns a products object (with items, pageInfo, and totalCount), an applications array of vehicle compatibility matches, and a crossReference object with its own items, pageInfo, and totalCount. Both page and page_size parameters control pagination. The get_product_detail endpoint works the same way but is designed for single-SKU lookups; SKUs must be passed in human-readable format with spaces (e.g. C 2212), not the internal concatenated format.
Product Images
get_product_images takes a human-readable SKU and returns a hits array of image objects, each containing link, dimension, mimeType, metaData, and a uriTemplate field for requesting images at different sizes. The response also includes a total count, a hasMore boolean, and a successful flag. This makes it straightforward to build image galleries or integrate product visuals into a parts catalog without separately resolving image URLs.
New and Discontinued Products
get_new_products returns products added since a given date (YYYY-MM-DD). Omitting the date defaults to 120 days before today. Each item includes sku, name, availableSince, urlKey, and attributes. get_discontinued_products pages through discontinued parts, returning each item's sku, attributes, urlKey, and a successorProduct field that identifies the replacement part when one exists. Pagination uses page and page_size; pages beyond available data return an empty items array and null pageInfo.
The MANN-FILTER API is a managed, monitored endpoint for mann-filter.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when mann-filter.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official mann-filter.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a cross-reference lookup tool that maps competitor part numbers to MANN-FILTER equivalents using
search_products. - Populate a parts catalog with product images and size variants via
get_product_imagesand itsuriTemplatefield. - Automate fleet maintenance systems by querying vehicle compatibility through the
applicationsarray returned bysearch_products. - Track new product releases weekly by calling
get_new_productswith a rollingdateparameter and monitoringavailableSince. - Identify discontinued parts and surface their
successorProductreplacements to prevent stockout errors in inventory systems. - Sync an automotive aftermarket database with current MANN-FILTER SKUs, attributes, and
urlKeylinks.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does MANN-FILTER offer an official developer API?+
What does the `get_discontinued_products` endpoint return for replaced parts?+
items array includes a successorProduct field. When MANN-FILTER has designated a replacement part, that successor's information is included. If no successor is assigned, the field will be absent or null. The totalCount field gives the total number of discontinued products across all pages.Does the SKU format matter when calling `get_product_detail` or `get_product_images`?+
HU 816 x or C 2212. Passing the internal concatenated format (like HU816X) will not return correct results.Does the API return pricing or stock availability for MANN-FILTER products?+
Can I retrieve a full list of all MANN-FILTER products in bulk?+
get_new_products and get_discontinued_products support paginated bulk retrieval for those subsets, and search_products requires a query string rather than returning all products. You can fork this API on Parse and revise it to add a broader catalog enumeration endpoint.