toyota.ca APIwww.toyota.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.
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'
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.
| Param | Type | Description |
|---|---|---|
| province | string | Canadian province code to filter offers. Accepted values: ON, BC, AB, QC, MB, SK, NS, NB, PE, NL, NT, NU, YT. |
{
"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": "Prius Plug-in Hybrid SE",
"offers": [
{
"apr": 4.49,
"price": 38730,
"provinces": [
"AB",
"BC",
"NB"
],
"dealer_fees": 999,
"offer_title": "Lease Offer",
"term_months": 36,
"down_payment": 0,
"km_allowance": 72000,
"offer_message": "Lease from 4.49%",
"disclaimer_text": "Limited time lease offer...",
"monthly_payment": 596.41,
"excess_km_charge": 0.1,
"total_obligation": 21470.76,
"delivery_destination_charge": 1860
}
],
"series": "Prius Plug-in Hybrid",
"province": "ON",
"card_label": "Plug-in Hybrid 2026 Prius Plug-in Hybrid SE",
"model_year": "2026",
"powertrain": "Plug-in Hybrid",
"explorer_url": "https://www.toyota.ca/en/vehicles/prius-plug-in-hybrid/overview/",
"vehicle_image": "https://toyotacanada.scene7.com/is/image/toyotacanada/b26_acaauc_fl1_01l0_a?fmt=png-alpha",
"vehicle_types": [
"Electrified",
"Cars"
],
"featured_payment": {
"type": "Lease",
"amount": 575.71
},
"build_and_price_url": "https://www.toyota.ca/en/build-price/prius-plug-in-hybrid/?year=2026&model=ACAAUC&package=A",
"limited_availability": null,
"vehicle_from_pricing": null
}
],
"province": "ON",
"total_deals": 10
},
"status": "success"
}
}About the toyota.ca 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.
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.
- 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
| 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.