Discover/mazda.ca API
live

mazda.ca APIwww.mazda.ca

Retrieve current Mazda Canada vehicle deals, trim-level financing and lease rates, incentives, and payment quotes by province via 3 structured endpoints.

Endpoints
3
Updated
14d ago
Try it
Language code: 'en' for English, 'fr' for French
Canadian province code for region-specific pricing and fees. Accepted values: ON, QC, BC,
api.parse.bot/scraper/ceb42363-bc22-4bd6-bbb4-335caba2c4de/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/ceb42363-bc22-4bd6-bbb4-335caba2c4de/get_deals?language=en&province=ON' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Get all current vehicle deals and offers from Mazda Canada. Returns every available model/year with MSRP, financing rates (APR for all terms), lease rates, residual values, cash incentives/rebates, fees, vehicle images, and promotional text.

Input
ParamTypeDescription
languagestringLanguage code: 'en' for English, 'fr' for French
provincestringCanadian province code for region-specific pricing and fees. Accepted values: ON, QC, BC, AB, SK, MB, NB, NS, PE, NL, NT, YT, NU
Response
{
  "type": "object",
  "fields": {
    "deals": "array of deal objects with model_name, model_year, msrp, financing, leasing, fees, incentives, and vehicle_image",
    "language": "string language code used",
    "province": "string province code used",
    "total_deals": "integer count of deals returned"
  },
  "sample": {
    "data": {
      "deals": [
        {
          "fees": {
            "A/C Tax": 100,
            "Freight": 1455,
            "Administration Fee": 795
          },
          "msrp": 36300,
          "is_ev": false,
          "title": "2026 CX-5",
          "leasing": {
            "rates": [
              {
                "lease_rate": 3.99,
                "term_months": 36,
                "residual_percent": 62
              }
            ],
            "default_term_months": 60
          },
          "financing": {
            "rates": [
              {
                "apr_rate": 1.99,
                "term_months": 24
              },
              {
                "apr_rate": 1.99,
                "term_months": 36
              }
            ],
            "default_term_months": 84
          },
          "sales_tax": {
            "GST": 0,
            "HST": 13,
            "PST": 0
          },
          "ev_rebates": [],
          "incentives": {
            "mazda_bonus": 0,
            "loyalty_cash": 500,
            "military_bonus": 600,
            "loyalty_rate_reduction": 1
          },
          "model_code": "NXXL86",
          "model_name": "MAZDA CX-5",
          "model_year": "2026",
          "description": "Compact SUV",
          "option_code": "AA00",
          "vehicle_url": "https://www.mazda.ca/en/vehicles/cx-5/",
          "vehicle_image": "https://www.mazda.ca/globalassets/mazda-canada/build-and-price/jellies/2026-CX-5-Nav.png",
          "is_coming_soon": false,
          "promotional_text": "1.99% PURCHASE FINANCING FOR 36 MONTHS",
          "incentives_banner": "$500 BONUS ON ANY MAZDA ADDED PROTECTION PLAN",
          "build_and_price_url": "https://www.mazda.ca/en/shopping-tools/build-and-price/"
        }
      ],
      "language": "en",
      "province": "ON",
      "total_deals": 20
    },
    "status": "success"
  }
}

About the mazda.ca API

The Mazda Canada API provides access to current Canadian vehicle offers, financing rates, lease terms, and payment calculations across 3 endpoints. get_deals returns every active model with MSRP, APR options, residual values, cash incentives, and vehicle images. get_trims breaks those offers down to the trim level, and get_payment_quote calculates weekly, bi-weekly, and monthly payment figures for a specific vehicle configuration — all with province-specific pricing.

What the API Covers

The API surfaces current Mazda Canada promotional offers for all available models and model years. The get_deals endpoint returns an array of deal objects that each include model_name, model_year, msrp, full financing and leasing structures (APR for all terms, residual values, and lease rates), incentives such as cash rebates, applicable fees, and a vehicle_image URL. Both language (en or fr) and province (e.g. ON, QC, BC) are optional filters that shift pricing and fee calculations to match the customer's region.

Trim-Level Detail

get_trims accepts a required year and model slug (e.g. CX-5, CX-70-MHEV) and returns an array of trims, each with trim_name, msrp, model_code, option_code, and full financing, leasing, and incentives objects. The model_code and option_code fields are what you pass downstream to get_payment_quote. If the year/model/province/language combination has no matching data, the response includes a stale_input field with kind: input_not_found instead of silently returning an empty array.

Payment Quote Calculation

get_payment_quote uses the model_code from either get_deals or get_trims as its required input. Supply optional parameters — province, loan_term or lease_term (in months), down_payment, and product_key (loan or lease) — to get back weekly_payment, biweekly_payment, monthly_payment, and monthly_payment_with_taxes alongside the apr_rate and msrp that were used in the calculation. This makes it straightforward to compare payment structures across terms or provinces for the same vehicle.

Common use cases
  • Display current Mazda Canada financing APR and lease rates on a dealer or comparison website, filtered by province
  • Build a payment estimator that uses model_code and loan_term to return weekly and monthly payments including taxes
  • Aggregate all active cash incentives and rebates across Mazda Canada models for a deal-alert tool
  • Compare trim-level MSRP differences and residual values for a specific model like the CX-5 or CX-30
  • Generate French-language offer summaries by passing language=fr to get_deals for Quebec-facing content
  • Track changes in APR rates or residual values over time by polling get_deals periodically per province
  • Feed trim-level option_code and model_code into a configurator that outputs bi-weekly payment quotes
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Mazda Canada have an official public developer API?+
Mazda Canada does not publish a public developer API for vehicle offers, pricing, or payment calculations. This API provides structured access to that data via the Parse marketplace.
How does province selection affect the data returned?+
Passing a province code (e.g. ON, QC, BC) to get_deals, get_trims, or get_payment_quote adjusts MSRP-adjacent fees, applicable taxes in monthly_payment_with_taxes, and any region-specific incentives or rebates. Omitting the province returns default pricing that may not reflect what a customer in a specific province would be quoted.
What happens if I pass a model/year combination that doesn't exist?+
get_trims returns a stale_input field with kind set to input_not_found rather than an empty trims array. This lets your application distinguish between a model with zero trims and an invalid input. get_deals does not require a model filter, so it always returns all currently available deals.
Does the API include dealer inventory or vehicle availability at specific dealerships?+
No. The API covers national and provincial promotional offers, financing and lease rates, incentives, and payment quotes — not individual dealership stock or real-time inventory. You can fork this API on Parse and revise it to add a dealership inventory endpoint if that data is something you need.
Can I get historical offer data or track how rates change over time?+
The API returns current active offers only; there is no built-in historical data or changelog. To track rate changes, you would need to poll the endpoints periodically and store the results yourself. You can fork this API on Parse and revise it to add a caching or history layer as a separate endpoint.
Page content last updated . Spec covers 3 endpoints from www.mazda.ca.
Related APIs in AutomotiveSee all →
acura.ca API
Check current Acura vehicle deals, financing rates, lease payments, and incentives across all Canadian provinces and models including the ADX, ZDX, MDX, RDX, Integra, and TLX. Calculate payment options based on specific offers and models available by province.
getfpv.com API
Search and browse products from GetFPV's catalog of FPV drone components and accessories. Retrieve listings by keyword or category, view detailed product specifications, pricing, and stock status, and explore new arrivals and current sales.
firetruckmall.com API
Browse all available fire trucks from Fire Truck Mall with complete details including pricing, year, specifications, and images. Track when each listing was posted to find the newest inventory and compare vehicles across the marketplace.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
team-bhp.com API
Access forum discussions, travelogues, news articles, and user profiles from Team-BHP.com to discover automotive insights, travel stories, and community conversations. Search threads, browse categories, and find trending discussions all in one place.
carjam.co.nz API
Look up detailed New Zealand vehicle information by license plate, VIN, or chassis number to instantly access registration status, WOF/COF compliance, service history, odometer readings, and damage records. Verify if a vehicle is stolen and get comprehensive specs to make informed decisions before purchasing or for fleet management.
riyasewana.com API
Browse vehicle listings from Sri Lanka's largest marketplace, search by category and filters, and access detailed information about specific cars, bikes, and other vehicles. Get comprehensive vehicle data including listings organized by category to find exactly what you're looking for.