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.
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'
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.
| Param | Type | Description |
|---|---|---|
| modelrequired | string | Filter 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'). |
| province | string | Canadian province code (e.g., ON, BC, AB, QC). |
{
"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.
- 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
| 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 Honda Canada have an official developer API?+
What does get_payment_calculation return beyond a monthly payment figure?+
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.