Discover/Honda API
live

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.

Endpoint health
verified 7d ago
get_models
get_payment_calculation
get_vehicle_deals
get_offers
4/4 passing latest checkself-healing
Endpoints
4
Updated
21d ago

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.

Try it
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').
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.
Call it over HTTPgrab a free API key at signup
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'
Python SDK · recommended

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")
All endpoints · 4 totalmissing one? ·

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.

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": 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.

Reliability & maintenanceVerified

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.

Last verified
7d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
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,000100 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 honda.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.
mazda.ca API
Find current vehicle deals, financing rates, lease options, and incentives across all Mazda Canada models and trims, with pricing tailored to your province. Get instant payment quotes to compare your options and discover the best offers available.
toyota.ca API
Find current vehicle deals, promotions, and incentives from Toyota Canada including lease, finance, and cash purchase options tailored to your province. Browse and compare the latest offers to find the best deal on your next Toyota purchase.
kia.ca API
Get current vehicle deals, financing options, and EV incentives directly from Kia Canada, including pricing, images, and build-and-price tools for every Canadian province. Compare offers across all Kia models and access detailed promotion information to find the best deal for your location.
ford.ca API
Get current Ford vehicle deals, financing rates, lease terms, and cash rebates available in Canada, complete with vehicle images and links to specific models. Compare incentives across Ford's lineup to find the best offers for your next vehicle purchase.
chevrolet.ca API
Find current Chevrolet vehicle deals, financing options, lease rates, and cash credits available in your Canadian region. Browse incentives and program bonuses organized by model to compare the best offers near you.
clutch.ca API
Search and browse thousands of used vehicles across Canada with detailed specs, pricing, and history, then calculate loan payments to find your next car. Access comprehensive vehicle information including photos, available makes and models, and recent offers all in one place.
hondapartsnow.com API
Find and purchase genuine Honda parts and accessories by browsing your vehicle's year, model, and trim, or by searching parts directly and looking up components by VIN number. Manage your shopping experience with real-time cart updates and access to detailed part information across all available Honda categories.