Discover/Chevrolet API
live

Chevrolet APIchevrolet.ca

Retrieve current Chevrolet Canada vehicle deals by province. Returns lease terms, finance rates, cash credits, and program bonuses for each model via one endpoint.

Endpoint health
verified 6d ago
get_offers
1/1 passing latest checkself-healing
Endpoints
1
Updated
26d ago

What is the Chevrolet API?

The Chevrolet Canada Offers API exposes one endpoint — get_offers — that returns all active vehicle incentives from chevrolet.ca, covering up to dozens of models per region. Each response includes 10+ structured fields per vehicle: model name, year, trim, MSRP, image URLs, vehicle page URLs, and a full breakdown of lease terms, financing rates, cash credits, and program bonuses, filterable by Canadian province and language.

Try it
Canadian province or region. Accepts province names (ontario, quebec, alberta, british_columbia, manitoba, saskatchewan, nova_scotia, new_brunswick, pei, newfoundland, yukon, prairie), province codes (ON, QC, AB, BC, MB, SK, NL, NS, NB, PE, YT), or city regions (toronto, vancouver). Defaults to Ontario.
Language for offers content. Accepted values: 'en' for English, 'fr' for French.
api.parse.bot/scraper/1aeca96c-e476-423a-bdf4-41d802f14fdd/<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/1aeca96c-e476-423a-bdf4-41d802f14fdd/get_offers?region=ontario&language=en' \
  -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 chevrolet-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.

from parse_apis.chevrolet_canada_offers_api import ChevroletCanada, Region, Language

client = ChevroletCanada()

# Get current vehicle deals for Alberta in English
deal = client.deals.get(region=Region.ALBERTA, language=Language.EN)

print(deal.region, deal.language, deal.total_vehicles)

for vehicle in deal.vehicles:
    print(vehicle.title, vehicle.model_name, vehicle.model_year, vehicle.trim)
    for offer in vehicle.offers:
        print(offer.category, offer.offer_type)
        if offer.lease:
            print(offer.lease.weekly_payment, offer.lease.rate_percent, offer.lease.term_months)
        if offer.finance:
            print(offer.finance.apr_rate, offer.finance.term_months)
All endpoints · 1 totalmissing one? ·

Get all current vehicle deals and offers from Chevrolet Canada for a specific region. Returns vehicle details including model name, year, trim, image URLs, vehicle page URLs, and comprehensive offer breakdowns (lease terms, finance rates, cash credits, program bonuses). Each region may have different vehicles and offer terms.

Input
ParamTypeDescription
regionstringCanadian province or region. Accepts province names (ontario, quebec, alberta, british_columbia, manitoba, saskatchewan, nova_scotia, new_brunswick, pei, newfoundland, yukon, prairie), province codes (ON, QC, AB, BC, MB, SK, NL, NS, NB, PE, YT), or city regions (toronto, vancouver). Defaults to Ontario.
languagestringLanguage for offers content. Accepted values: 'en' for English, 'fr' for French.
Response
{
  "type": "object",
  "fields": {
    "region": "string - internal region key used (e.g. 'ontario_chevrolet')",
    "language": "string - language code ('en' or 'fr')",
    "vehicles": "array of vehicle deal objects with title, model details, image, URLs, and offers",
    "total_vehicles": "integer - number of vehicle deals found"
  },
  "sample": {
    "data": {
      "region": "ontario_chevrolet",
      "language": "en",
      "vehicles": [
        {
          "msrp": null,
          "trim": "1RS",
          "title": "2026 Trax",
          "offers": [
            {
              "finance": {
                "apr_rate": "0%",
                "term_months": "36"
              },
              "category": "finance",
              "offer_type": "26 | % Finance Only For Large Term"
            }
          ],
          "model_name": "Trax",
          "model_year": "2026",
          "vehicle_url": "https://www.chevrolet.ca/en/suvs/trax",
          "vehicle_image": "https://www.chevrolet.ca/content/dam/chevrolet-offers/canada/en/dre/offer-assets/2026/march/west/Trax_1RS_892x762.jpg",
          "vehicle_model": "TRAX",
          "image_alt_text": "2026 Trax 1RS driving down a street.",
          "build_and_price_url": null,
          "search_inventory_url": "https://www.chevrolet.ca/en/inventory/SearchResults/?model=Trax&year=2026"
        }
      ],
      "total_vehicles": 14
    },
    "status": "success"
  }
}

About the Chevrolet API

What the API Returns

The get_offers endpoint returns the full set of active Chevrolet Canada deals for a given region, structured as an array of vehicle deal objects. Each object includes title, model_name, model_year, vehicle_model, trim, msrp, vehicle_image, and image_alt fields alongside complete offer breakdowns. Offer breakdowns cover lease terms (payment amounts, down payment, term length), finance rates, cash credit values, and program bonuses where applicable. The total_vehicles integer in the response lets you quickly confirm how many deals are active in the selected region without iterating the full array.

Region and Language Filtering

The region parameter accepts Canadian province names such as ontario, quebec, alberta, british_columbia, and manitoba, among others. Internally, these map to region keys like ontario_chevrolet returned in the response. The language parameter accepts en (English) or fr (French), allowing bilingual applications to surface offer copy in the appropriate language. Both parameters are optional — omitting them falls back to defaults. When building province-level deal finders, passing an explicit region ensures only locally relevant incentives and eligibility conditions appear.

Data Shape and Coverage

Offers are organized per vehicle, meaning one entry in the vehicles array corresponds to one model/trim combination with all its current incentives bundled together. This makes it straightforward to compare lease versus finance versus cash-back options for the same vehicle without additional joins. MSRP values and model year fields allow basic price-tier filtering client-side. Image URLs (vehicle_image) and vehicle page URLs enable direct deep-linking into the chevrolet.ca model pages from any front-end that consumes this data.

Reliability & maintenanceVerified

The Chevrolet API is a managed, monitored endpoint for chevrolet.ca — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when chevrolet.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 chevrolet.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
6d 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
  • Build a province-specific Chevrolet deal tracker that surfaces the lowest current lease payment per model using msrp and lease term fields.
  • Compare financing rates across all active Chevrolet Canada models in a given region to identify the best low-APR offers.
  • Power a bilingual (English/French) deal aggregator by toggling the language parameter between en and fr.
  • Monitor cash credit and program bonus availability across provinces to flag regional incentive discrepancies.
  • Generate weekly deal digest emails using model_name, model_year, trim, and offer breakdown fields from get_offers.
  • Deep-link users directly to chevrolet.ca model pages using the vehicle_image and vehicle URL fields returned per deal.
  • Aggregate Chevrolet Canada incentive data alongside other OEM offer APIs to build a multi-brand Canadian new-car deal comparison tool.
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 Chevrolet Canada provide an official public developer API?+
Chevrolet Canada does not publish an official public developer API for retrieving current offers or incentive data from chevrolet.ca.
What does the `get_offers` endpoint return for each vehicle?+
Each vehicle object includes title, model_name, model_year, vehicle_model, trim, msrp, vehicle_image, and image_alt, plus a full offer breakdown covering lease terms, finance rates, cash credits, and any active program bonuses. The response also includes the region key and total_vehicles count.
Does the API cover all Canadian provinces?+
The region parameter supports major provinces including Ontario, Quebec, Alberta, British Columbia, and Manitoba. Territories and any provinces not in the accepted values list are not currently covered. You can fork this API on Parse and revise it to add support for additional regions.
Does the API return historical or expired offers?+
The API returns only currently active offers as listed on chevrolet.ca at the time of the request. Historical offer data and expired incentive records are not exposed. You can fork this API on Parse and revise it to add a data-logging layer that archives responses over time.
Can I retrieve dealer-level pricing or inventory alongside the offers?+
Not currently. The API covers model-level incentives, lease terms, finance rates, and cash credits at the regional level — it does not include individual dealer stock, dealer-specific pricing, or VIN-level inventory. You can fork this API on Parse and revise it to add a dealer inventory endpoint if that data is needed.
Page content last updated . Spec covers 1 endpoint from chevrolet.ca.
Related APIs in AutomotiveSee all →
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.
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.
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.
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.
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.
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.
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.