# Kia Canada — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

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

**Category:** Automotive | **Website:** [www.kia.ca/offers](https://www.kia.ca/offers) | **Docs:** [parse.bot/marketplace/ed083d1d-5a63-4f11-a5d7-bd2446fa255a/kia-ca-api](https://parse.bot/marketplace/ed083d1d-5a63-4f11-a5d7-bd2446fa255a/kia-ca-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-kia-ca-api-ed083d1d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_offer_details

Get detailed offer information for a specific Kia vehicle model, including extended specs (engine, dimensions, colours) for each trim level. Returns stale_input if the model is not found in current offers. The model name is matched case-insensitively against the current offer catalog.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `model` | string | Yes | Vehicle model name as it appears in the offers catalog (e.g., 'Sportage', 'EV9', 'Niro EV', 'K4', 'Seltos', 'Sorento PHEV', 'Carnival'). |
| `province` | string | No | Canadian province code for province-specific pricing and rebates. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kia-ca-api-ed083d1d/get_offer_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"<string>","province":"<string>"}'
```

### get_offers

Get all current vehicle offers and deals from Kia Canada for a specific province. Returns all available models with MSRP, financing info, bonus/incentive details, image URLs, and build-and-price links. The full offer catalog is returned in a single response (no pagination). Each offer includes one or more trim levels with province-specific pricing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `province` | string | No | Canadian province code for province-specific pricing and rebates. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kia-ca-api-ed083d1d/get_offers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"province":"<string>"}'
```
