bmwusa.com APIbmwusa.com ↗
Access BMW USA vehicle models, specs, pricing, M-Series, electric/PHEV lineups, and current lease/finance offers via a structured REST API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/cd370ef7-1ca6-4f7a-a657-01d7c899f2ce/get_all_models' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns all BMW vehicle models available on bmwusa.com, including performance specs, pricing, fuel type, drivetrain, and image URLs. Results include every model across all series.
No input parameters required.
{
"type": "object",
"fields": {
"total": "integer total count of vehicles returned",
"vehicles": "array of vehicle objects with code, name, model_year, series, body_style, price, horsepower, mpg, acceleration, drive_train, fuel_type, cylinders, is_m, is_m_performance, marketing_text, technical_text, cosy_urls, and pdp_url"
},
"sample": {
"data": {
"total": 74,
"vehicles": [
{
"mpg": 35,
"code": "262B",
"is_m": false,
"name": "230i Coupe",
"price": 42200,
"series": "2",
"pdp_url": null,
"cosy_urls": {
"cosy_image_lg": "COSY-EU-100-...",
"cosy_image_md": "COSY-EU-100-...",
"cosy_image_sm": "COSY-EU-100-..."
},
"cylinders": 4,
"fuel_type": "O",
"body_style": "Coupe",
"horsepower": 255,
"model_year": 2026,
"drive_train": "Rear-wheel drive",
"acceleration": "5.50000",
"marketing_text": "All New 2 Series: Less rules, more performance.",
"technical_text": "2.0-liter BMW TwinPower Turbo inline 4-cylinder",
"is_m_performance": false
}
]
},
"status": "success"
}
}About the bmwusa.com API
The BMW USA API provides 5 endpoints covering the full bmwusa.com vehicle catalog, including specs, pricing, and national offers. get_all_models returns every model across all series with fields like horsepower, 0-60 acceleration, drivetrain, and base MSRP. Dedicated endpoints isolate the electric and plug-in hybrid lineup, the M performance roster, and current lease and finance promotions — all in structured JSON with no parsing required.
Vehicle Catalog Endpoints
get_all_models returns every BMW model currently listed on bmwusa.com, with each vehicle object carrying fields including code, name, model_year, series, body_style, price (base MSRP in USD), horsepower, mpg, acceleration (0-60 string), drive_train, and fuel_type. The total integer in the response tells you exactly how many models are in the current lineup. get_electric_models filters that catalog to vehicles with fuel_type of 'E' (all-electric) or 'X' (plug-in hybrid), returning the same field structure — useful for applications focused on EV comparisons or range/efficiency data.
M-Series and Detail Endpoints
get_bmw_m_models returns vehicles where is_m or is_m_performance is true, covering both full M cars and M Performance variants in one call. For per-model depth, get_model_details accepts a vehicle_code string (e.g. '262B' for the 230i Coupe) and returns extended data: full specs, a lease_offer object with monthly_payment, lease_term, msrp, due_at_signing, start_date, and end_date, plus image_urls, disclaimers, and configuration options. Vehicle codes can be discovered from any of the list endpoints.
Offers Endpoint
get_all_offers returns every active national lease and finance promotion across all models. Each offer object includes vehicle_name, vehicle_code, type (lease or finance), monthly_payment, term_months, due_at_signing, loyalty_credit, and validity dates (start_date, end_date). This endpoint reflects national promotional pricing and does not require a vehicle code as input — it returns the full offers table in one response.
- Build a BMW model comparison tool using horsepower, acceleration, and MSRP fields from get_all_models
- Track month-to-month changes in lease offers by polling get_all_offers and diffing monthly_payment and due_at_signing
- Populate an EV-focused configurator using get_electric_models to surface fuel_type, mpg, and drivetrain data
- Display M-lineup specs side-by-side using get_bmw_m_models with horsepower and acceleration fields
- Build a deal-alerting tool that monitors loyalty_credit and end_date fields from get_all_offers
- Retrieve detailed lease terms and image URLs for a specific model using get_model_details with a known vehicle_code
| 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.