# Mbusa — 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 new Mercedes-Benz vehicles across US dealers by zip code and access detailed information including specifications, pricing, and dealer details. Filter and compare available inventory to find the perfect vehicle that meets your needs.

**Category:** Automotive | **Website:** [www.mbusa.com/en/home](https://www.mbusa.com/en/home) | **Docs:** [parse.bot/marketplace/d5fca660-8e66-4eda-b8c2-8e1922e37edd/mbusa-com-api](https://parse.bot/marketplace/d5fca660-8e66-4eda-b8c2-8e1922e37edd/mbusa-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-mbusa-com-api-d5fca660/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_inventory

Search new Mercedes-Benz vehicle inventory by US zip code. Returns paginated listings with full specs, pricing, dealer info, and available filter facets for refinement. Sorted by distance from zip by default. Each vehicle includes VIN, MSRP, engine, colors, features, dealer location with distance, and monthly payment estimates. The available_filters object enumerates every filterable dimension with counts, enabling progressive narrowing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `body_style` | string | No | Body style filter |
| `class` | string | No | Model class filter (e.g. 'GLE', 'GLC', 'C', 'S', 'E', 'CLA', 'GLA', 'SL', 'EQS', 'EQE', 'CLE'). Use available_filters.modelIdentifier in response for valid values. |
| `color` | string | No | Exterior color filter code |
| `count` | integer | No | Number of vehicles per page |
| `distance` | string | No | Distance radius in miles from zip code |
| `fuel_type` | string | No | Fuel type filter |
| `page` | integer | No | Page number (1-based) |
| `sort_by` | string | No | Sort order for results |
| `year` | string | No | Model year filter (e.g. '2025', '2026'). Use available_filters.year in response for current valid values. |
| `zip` | string | Yes | US zip code to search near (e.g. '10001', '90210', '60601') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mbusa-com-api-d5fca660/search_inventory \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"body_style":"<string>","class":"<string>","color":"<string>","count":"<integer>","distance":"<string>","fuel_type":"<string>","page":"<integer>","sort_by":"<string>","year":"<string>","zip":"<string>"}'
```
