Discover/honda.ca API
live

honda.ca APIwww.honda.ca

Access Honda Canada vehicle pricing, lease/finance payments, APR rates, and incentive offers across all Canadian provinces via 4 structured API endpoints.

Endpoints
4
Updated
10d ago
Try it
Filter by model name or key. Matches as substring against model name and key (e.g., 'civic
Canadian province code (e.g., ON, BC, AB, QC).
api.parse.bot/scraper/46d50c80-9f04-48ca-a132-1043076e8b26/<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/46d50c80-9f04-48ca-a132-1043076e8b26/get_vehicle_deals?model=civic_sedan&province=ON' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Get comprehensive vehicle deals for a province filtered by model, including MSRP, lease/finance payment calculations, APR rates, available terms, and current incentive offers. Payment calculations are provided for up to 5 vehicles per request.

Input
ParamTypeDescription
modelrequiredstringFilter by model name or key. Matches as substring against model name and key (e.g., 'civic_sedan', 'cr-v', 'passport', 'pilot', 'odyssey', 'ridgeline', 'hr_v', 'accord_sedan', 'prologue', 'prelude', 'civic_hatchback', 'civic_sedan_si').
provincestringCanadian province code (e.g., ON, BC, AB, QC).
Response
{
  "type": "object",
  "fields": {
    "deals": "array of deal objects with model_name, model_year, trim, transmission, msrp, freight_and_pdi, lease, finance, incentives, province",
    "province": "string, the province code used",
    "total_vehicles": "integer, number of matching vehicles"
  },
  "sample": {
    "data": {
      "deals": [
        {
          "msrp": 55550,
          "trim": "SPORT",
          "lease": {
            "apr": 5.69,
            "term_months": 60,
            "down_payment": 0,
            "available_terms": [
              24,
              30,
              36,
              42,
              48,
              54,
              60
            ],
            "freight_and_pdi": 2000,
            "levies_and_fees": 1145.5,
            "monthly_payment": 758.42,
            "available_term_aprs": {
              "24": 5.69,
              "30": 5.69,
              "36": 5.69,
              "42": 5.69,
              "48": 5.69,
              "54": 5.69,
              "60": 5.69
            },
            "total_cost_of_borrowing": 11696.2
          },
          "finance": {
            "apr": 5.79,
            "term_months": 60,
            "down_payment": 0,
            "available_terms": [
              24,
              36,
              48,
              60,
              72,
              84,
              96
            ],
            "freight_and_pdi": 2000,
            "levies_and_fees": 1194,
            "monthly_payment": 1110.72,
            "available_term_aprs": {
              "24": 5.79,
              "36": 5.79,
              "48": 5.79,
              "60": 5.79,
              "72": 5.79,
              "84": 5.79,
              "96": 6.69
            },
            "total_cost_of_borrowing": 8899.2
          },
          "province": "ON",
          "incentives": {
            "lease_incentives": [
              {
                "name": "Lease Bonus",
                "type": "StackableRebate",
                "value": "1000"
              }
            ],
            "finance_incentives": [
              {
                "name": "Finance Bonus",
                "type": "StackableRebate",
                "value": "1000"
              }
            ]
          },
          "model_name": "Pilot",
          "model_year": 2026,
          "transmission": "Automatic",
          "freight_and_pdi": 2000
        }
      ],
      "province": "ON",
      "total_vehicles": 10
    },
    "status": "success"
  }
}

About the honda.ca API

The Honda Canada API exposes 4 endpoints covering current vehicle deals, model catalog data, incentive offers, and detailed payment calculations for every Canadian province. Use get_vehicle_deals to retrieve MSRP, lease and finance monthly payments, APR rates, and active incentives for any Honda model filtered by province. Data aligns with Honda Canada's official Build & Price system and reflects province-specific pricing including freight and PDI fees.

What the API covers

Four endpoints give structured access to Honda Canada's current retail pricing and financing data. get_models returns the full model catalog — keys, trim names, transmission identifiers, freight and PDI values — and is the natural starting point for discovering the model_key, trim_key, and transmission_key values required by the other endpoints. get_vehicle_deals accepts a model substring filter and a province code (e.g., ON, BC, QC) and returns an array of deal objects. Each deal includes msrp, freight_and_pdi, structured lease and finance payment objects, and an incentives array. Payment calculations are returned for up to 5 vehicles per request.

Incentives and payment detail

get_offers narrows incentive data to a single transmission, returning IncentiveOffers broken out into Lease, Finance, and Cash arrays for the given transmission_key and province. The has_offers boolean flag lets you quickly skip transmissions with no active promotions. get_payment_calculation goes deeper: supply a model_key, trim_key, transmission_key, and exterior_color_key alongside optional payment_method (lease or finance), term, model_year, and province to get a full PaymentOptions array. That array includes monthly payment, APR, available terms, accessories, color options, warranties, and applicable levies.

Province-specific pricing

All pricing endpoints accept a two-letter Canadian province code. Because taxes, levies, and some incentive structures differ by province, the same trim can return meaningfully different payment figures between, say, AB and QC. Omitting the province parameter causes the endpoint to use a default, so passing an explicit code is recommended when province-accurate figures matter.

Common use cases
  • Compare current lease vs. finance monthly payments for a Honda Civic across multiple Canadian provinces
  • Track MSRP and freight/PDI changes for all CR-V trims when Honda Canada updates model year pricing
  • Build a deal-alerting tool that watches IncentiveOffers for new cash-back or bonus offers on specific transmission keys
  • Display province-specific payment breakdowns including APR, term options, and levies in a car-shopping app
  • Enumerate all available exterior color keys per trim to pre-populate a vehicle configurator UI
  • Aggregate lease payment data across the Honda lineup to identify the lowest effective monthly rate per segment
  • Cross-reference freight_and_pdi values by trim to calculate true out-of-pocket cost before negotiation
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 Honda Canada have an official developer API?+
Honda Canada does not publish a public developer API. This Parse API provides structured access to the same pricing and incentive data visible on honda.ca/offers.
What does get_payment_calculation return beyond a monthly payment figure?+
It returns a payment_data object containing a PaymentOptions array. Each entry includes APR, all available term lengths, applicable levies, accessories, warranty options, and exterior color choices for the specified trim and transmission configuration.
How specific is the incentive data returned by get_offers?+
get_offers returns incentives at the transmission level, not the trim or model level. The IncentiveOffers object separates Lease, Finance, and Cash incentive arrays, and the has_offers flag tells you immediately whether any active promotions exist for that transmission key in the given province.
Does the API cover used or certified pre-owned Honda vehicles?+
No. The API covers new Honda Canada vehicles only, reflecting pricing and incentives from the Build & Price system. Used and CPO listings are not currently exposed. You can fork this API on Parse and revise it to add an endpoint targeting Honda Canada's pre-owned inventory data.
Are dealer-specific prices or inventory levels available?+
Not currently. The API returns national and province-level MSRP, freight/PDI, and payment data — it does not include individual dealer stock levels, dealer markups, or local availability. You can fork this API on Parse and revise it to add dealer inventory coverage if that data is accessible from honda.ca.
Page content last updated . Spec covers 4 endpoints from www.honda.ca.
Related APIs in AutomotiveSee all →
car-part.com API
Search for recycled auto parts across thousands of vehicles and get detailed information on pricing, availability, and specifications from car-part.com. Find the exact parts you need with comprehensive search metadata and individual part details to compare options and locate the best deals.
autodoc.co.uk API
Find auto parts and check compatibility with your vehicle by browsing makes, models, and engines, then search for parts with detailed specifications and discover equivalent alternatives. Get everything you need to identify the right replacement parts for any car in the Autodoc catalog.
leboncoin.fr API
Search and retrieve detailed listings from Leboncoin across cars, real estate, jobs, and other categories with advanced filtering options. Access seller profiles, pricing analytics, and comprehensive listing details to find exactly what you're looking for on France's leading classifieds platform.
auctiontime.com API
Search and browse equipment and truck auction listings from AuctionTime.com, view detailed information about specific auctions, filter by category and auctioneer, and track auction results by date. Access comprehensive auction data including listings, categories, and auctioneer information all in one place.
yad2.co.il API
Search for apartments and cars on Yad2's marketplace and access detailed listing information including photos, prices, and specifications. Instantly reveal seller contact information to connect directly with real estate agents and car dealers.
turo.com API
Search for peer-to-peer car rentals across Turo by location and dates to browse available vehicles with pricing, specifications, and real-time availability. Get detailed information on specific cars to compare features and make rental decisions.
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.
blocket.se API
Search and browse second-hand items, cars, and housing listings across Blocket.se and Qasa.se, then retrieve detailed information about any listing that interests you. Get instant access to comprehensive product details, pricing, and categorized inventory across multiple marketplaces in one unified interface.