mann-filter.com 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.
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'
Search for filters by part number, vehicle name, or cross-reference number using the SmartSearch system. Returns product details, vehicle compatibility lists, and cross-references in a single search query.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| queryrequired | string | Search keyword (part number, vehicle name, or cross-reference number). Examples: 'oil filter', 'HU 816 x', 'Golf'. |
| page_size | integer | Number of results per page. |
{
"type": "object",
"fields": {
"products": "object containing items array, pageInfo, and totalCount",
"applications": "array of vehicle application matches",
"crossReference": "object containing cross-reference items, pageInfo, and totalCount"
},
"sample": {
"data": {
"products": {
"items": [
{
"product": {
"sku": "6220152911_MANN-FILTER",
"name": "6220152911_MANN-FILTER",
"urlKey": "6220152911_mann-filter",
"attributes": [
{
"key": "application",
"value": "OFF-HIGHWAY APPLICATIONS"
}
],
"references": []
}
}
],
"pageInfo": {
"pageSize": 5,
"totalPages": 63,
"currentPage": 1
},
"totalCount": 313
},
"applications": [],
"crossReference": {
"items": [],
"pageInfo": {
"pageSize": 5,
"totalPages": 0,
"currentPage": 1
},
"totalCount": 0
}
},
"status": "success"
}
}About the mann-filter.com 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.
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.
- 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 | 250 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.