Discover/Toyota API
live

Toyota APItoyota.ca

Access current Toyota Canada vehicle deals by province. Get lease rates, finance APR, monthly payments, cash incentives, and EVAP rebate eligibility via one endpoint.

Endpoint health
verified 12h ago
get_vehicle_deals
1/1 passing latest checkself-healing
Endpoints
1
Updated
26d ago

What is the Toyota API?

The Toyota Canada Deals API exposes current vehicle promotions from toyota.ca through a single endpoint, get_vehicle_deals, returning up to dozens of deal objects per province with 13 supported province codes. Each response includes lease terms, finance APR, monthly payment amounts, down payments, cash incentives, and EVAP rebate eligibility flags — all filtered to the Canadian province you specify.

Try it
Canadian province code to filter offers.
api.parse.bot/scraper/fc160b05-45a8-4d6f-95c8-d450dd01ea11/<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/fc160b05-45a8-4d6f-95c8-d450dd01ea11/get_vehicle_deals?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 toyota-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.

"""Walkthrough: Toyota Canada Vehicle Deals API — browse current offers by province."""
from parse_apis.toyota_canada_vehicle_deals_api import ToyotaCanada, Province, ProvinceInvalid

client = ToyotaCanada()

# List all current deals for Ontario (default province).
for deal in client.deals.list(province=Province.ON, limit=5):
    print(deal.model_year, deal.series, deal.powertrain)
    print(f"  Featured payment: ${deal.featured_payment.amount} ({deal.featured_payment.type})")

# Drill into the first BC deal's offers for financial details.
bc_deal = client.deals.list(province=Province.BC, limit=1).first()
if bc_deal:
    for offer in bc_deal.offers:
        print(offer.offer_title, offer.offer_message)
        if offer.apr is not None:
            print(f"  APR: {offer.apr}%, term: {offer.term_months} months")

# Typed error handling: catch an invalid province code.
try:
    for deal in client.deals.list(province="XX", limit=1):
        print(deal.model)
except ProvinceInvalid as exc:
    print(f"Invalid province: {exc.province}")

print("exercised: deals.list (ON) / deals.list (BC) + offer drill-down / ProvinceInvalid catch")
All endpoints · 1 totalmissing one? ·

Get all current vehicle deals and promotions for a specific Canadian province. Returns detailed offer information including lease rates, finance APR, monthly payments, terms, down payments, cash incentives, and EVAP rebate eligibility. Each deal includes the vehicle model info and one or more province-specific offers with structured financial details parsed from disclaimer text. Vehicles with no offers matching the requested province are excluded from results.

Input
ParamTypeDescription
provincestringCanadian province code to filter offers.
Response
{
  "type": "object",
  "fields": {
    "deals": "array of deal objects containing model info, pricing, and province-specific offers",
    "province": "string - province code used for filtering",
    "total_deals": "integer - number of vehicle deals found"
  },
  "sample": {
    "data": {
      "deals": [
        {
          "msrp": null,
          "model": "C-HR SE FWD",
          "offers": [
            {
              "provinces": [
                "BC",
                "AB",
                "NS"
              ],
              "offer_title": "Electric Vehicle Affordability Program",
              "offer_message": "Eligible for EVAP Rebate",
              "disclaimer_text": "Rebate amount if purchased..."
            },
            {
              "provinces": [
                "AB",
                "BC",
                "NB"
              ],
              "offer_title": "Customer Incentive",
              "offer_message": "Cash Incentives of $5,000",
              "disclaimer_text": "Customer Incentive offers valid..."
            }
          ],
          "series": "C-HR",
          "province": "ON",
          "card_label": "Battery Electric 2026 C-HR SE FWD",
          "model_year": "2026",
          "powertrain": "Battery Electric",
          "explorer_url": "https://www.toyota.ca/en/vehicles/c-hr/overview/",
          "vehicle_image": "https://toyotacanada.scene7.com/is/image/toyotacanada/b26_ababde_fl1_04z3_c?fmt=png-alpha",
          "vehicle_types": [
            "Electrified",
            "SUVs & Minivans"
          ],
          "featured_payment": {
            "type": "Finance",
            "amount": 1303.65
          },
          "build_and_price_url": "https://www.toyota.ca/en/build-price/c-hr/?year=2026&model=ABABDE&package=C",
          "limited_availability": null,
          "vehicle_from_pricing": null
        }
      ],
      "province": "ON",
      "total_deals": 10
    },
    "status": "success"
  }
}

About the Toyota API

What the API Returns

The get_vehicle_deals endpoint returns an array of deal objects covering Toyota Canada's current promotional offers. Each object contains model-level information alongside province-specific pricing: lease monthly payments and terms, finance APR and term length, cash purchase incentives, required down payments, and whether the vehicle qualifies for Canada's EVAP (electric vehicle) rebate program. The response also surfaces total_deals as an integer, giving you a quick count of active promotions without iterating the array.

Province Filtering

The single input parameter province accepts standard two-letter Canadian province and territory codes: ON, BC, AB, QC, MB, SK, NS, NB, PE, NL, NT, NU, and YT. Toyota Canada prices and structures offers differently by province — particularly for Quebec, which has distinct tax treatment and occasionally separate incentive stacks — so specifying the correct province code is important for accurate figures. If the parameter is omitted, the API falls back to a default province.

Response Shape and Coverage

Each deal object within the deals array carries the model name and trim alongside all active offer types simultaneously — a single model may carry both a lease offer and a finance offer within the same object. Cash purchase incentives and EVAP rebate flags appear as discrete fields, making it straightforward to filter for EV-eligible deals or purely cash-back promotions. The province field in the response echoes back the code used so downstream logic can confirm which market the data reflects.

Reliability & maintenanceVerified

The Toyota API is a managed, monitored endpoint for toyota.ca — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when toyota.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 toyota.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
12h ago
Latest check
1/1 endpoint 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
  • Aggregate and compare Toyota Canada lease rates across all provinces for a side-by-side monthly payment table
  • Filter deals by EVAP rebate eligibility to surface EV and hybrid incentive stacks for a Canadian EV buyer's guide
  • Track changes in finance APR offers month-over-month to identify when Toyota Canada adjusts promotional rates
  • Build a province-specific deal alert system that notifies users when cash incentives exceed a threshold
  • Populate a dealership CRM with current national Toyota Canada promotional offers by region
  • Compare lease terms and down payment requirements across models to calculate total cost of ownership
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 Toyota Canada offer an official public developer API for their deals data?+
Toyota Canada does not publish a public developer API for its promotional offers or pricing data. There is no documented endpoint or developer portal available at toyota.ca for accessing deal information programmatically.
What does the `get_vehicle_deals` endpoint return for each deal?+
Each deal object includes the vehicle model and trim, lease monthly payment and term, finance APR and term, required down payment, cash purchase incentive amount, and a flag indicating EVAP rebate eligibility. The response also includes the province code used and a total_deals count.
Are dealer-specific or regional dealer incentives included in the results?+
The API covers Toyota Canada's nationally published provincial offers — the deals listed on toyota.ca's offers page. Dealer-specific bonuses, loyalty rebates, or conquest incentives negotiated at the dealership level are not included. You can fork this API on Parse and revise it to target additional Toyota Canada pages if those offers become publicly listed there.
Does the API cover Toyota Canada inventory listings or vehicle specs?+
Not currently. The API covers promotional deal data — lease rates, finance APR, cash incentives, and EVAP rebate eligibility — rather than inventory availability or detailed vehicle specifications. You can fork it on Parse and revise it to add an endpoint targeting Toyota Canada's inventory or model specification pages.
How current is the deal data, and how often do Toyota Canada offers change?+
Toyota Canada typically updates its promotional offers on a monthly cycle, though mid-month adjustments do occur. The API reflects whatever deals are currently published on the toyota.ca offers page at the time of the request. There is no historical dataset; each call returns the current live offers for the specified province.
Page content last updated . Spec covers 1 endpoint from toyota.ca.
Related APIs in AutomotiveSee all →
toyota.com API
Access Toyota's full vehicle lineup, trim-level specifications, current promotional offers, and dealer locations — all from a single API. Compare models side-by-side, retrieve financing and lease deals by ZIP code, and find authorized dealerships near any US address.
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.
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.
honda.ca API
Get current Honda Canada vehicle pricing, lease and finance payment options, APR rates, and available incentives across all Canadian provinces to compare deals in real-time. Calculate custom payment scenarios and browse all Honda models with their latest promotional offers directly from Honda Canada's official pricing data.
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.
toyota.com.ar API
Access Toyota Argentina's complete vehicle catalog with structured data on models, versions, pricing (including prices with and without national taxes), specifications, and dealership locations by province and city.
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.
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.