Honda APIhonda.ca ↗
Access Honda Canada vehicle pricing, lease/finance payments, APR rates, and incentive offers across all Canadian provinces via 4 structured API endpoints.
What is the Honda 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.
curl -X GET 'https://api.parse.bot/scraper/46d50c80-9f04-48ca-a132-1043076e8b26/get_vehicle_deals?model=pilot&province=ON' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace honda-ca-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Honda Canada Vehicle Deals API — discover models, browse deals, check offers and payments."""
from parse_apis.honda_canada_vehicle_deals_api import (
HondaCanada, PaymentMethod, Province, TransmissionNotFound,
)
client = HondaCanada()
# List all models — each carries trims and transmission keys needed downstream.
for model in client.models.list(limit=5):
print(model.name, model.year, [t.name for t in model.trims])
# Construct a model by key and list its deals (lease/finance/incentives).
civic = client.model("civic_sedan")
for deal in civic.deals.list(province=Province.ON, limit=3):
print(deal.trim, deal.msrp, deal.lease.apr if deal.lease else "no lease")
# Look up incentive offers for a specific transmission.
try:
offer = client.offers.lookup(
transmission_key="10956-CVT", province=Province.ON,
)
print(offer.has_offers, offer.province)
except TransmissionNotFound as exc:
print(f"transmission gone: {exc.transmission_key}")
# Calculate a payment for a fully-specified vehicle configuration.
payment = client.payments.calculate(
model_key="civic_sedan",
trim_key="lx_10908",
transmission_key="10956-CVT",
exterior_color_key="rallye_red",
interior_color_key="bkblack_fabric_^2021_civic_sedan",
payment_method=PaymentMethod.LEASE,
model_year=2026,
)
print(payment.payment_method, payment.term, payment.province)
print("exercised: models.list / model.deals.list / offers.lookup / payments.calculate")
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. Matches model filter as substring against model name and key.
| 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": 28340,
"trim": "LX",
"lease": {
"apr": 3.69,
"term_months": 60,
"down_payment": 0,
"available_terms": [
24,
30,
36,
42,
48,
54,
60
],
"freight_and_pdi": 1830,
"levies_and_fees": 1145.5,
"monthly_payment": 385.39,
"available_term_aprs": {
"24": 1.99,
"30": 2.19,
"36": 2.49,
"42": 2.69,
"48": 3.19,
"54": 3.19,
"60": 3.69
},
"total_cost_of_borrowing": 3927.3
},
"finance": {
"apr": 4.29,
"term_months": 60,
"down_payment": 0,
"available_terms": [
24,
36,
48,
60,
72,
84,
96
],
"freight_and_pdi": 1830,
"levies_and_fees": 1194,
"monthly_payment": 581.73,
"available_term_aprs": {
"24": 2.79,
"36": 3.29,
"48": 3.79,
"60": 4.29,
"72": 4.29,
"84": 4.79,
"96": 6.69
},
"total_cost_of_borrowing": 3539.8
},
"province": "ON",
"incentives": {
"lease_incentives": [
{
"name": "Lease Bonus",
"type": "StackableRebate",
"value": "500"
}
]
},
"model_name": "Civic Sedan",
"model_year": 2026,
"transmission": "CVT",
"freight_and_pdi": 1830
}
],
"province": "ON",
"total_vehicles": 10
},
"status": "success"
}
}About the Honda API
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.
The Honda API is a managed, monitored endpoint for honda.ca — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when honda.ca changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official honda.ca API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- 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 | 100 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.