# Acura — 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.

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

**Category:** Automotive | **Website:** [www.acura.ca/offers](https://www.acura.ca/offers) | **Docs:** [parse.bot/marketplace/8b0bae91-54b2-415a-9a25-e15ecc2e3b14/acura-ca-api](https://parse.bot/marketplace/8b0bae91-54b2-415a-9a25-e15ecc2e3b14/acura-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-acura-ca-api-8b0bae91/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### calculate_payment

Calculate detailed lease or finance payment for a specific Acura vehicle configuration. Returns APR rates, monthly payments, fees, levies, and available terms. Use get_models first to find valid model_key, trim_key, and transmission_key values.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `down_payment` | number | No | Down payment amount in CAD. |
| `km_allowance` | integer | No | Annual km allowance for lease (e.g., 12000, 16000, 20000, 24000). |
| `language` | string | No | Language code for response content. |
| `model_key` | string | Yes | Model key from get_models (e.g., 'rdx', 'adx', 'mdx', 'integra'). |
| `model_year` | integer | No | Model year. |
| `payment_method` | string | No | Payment method: 'lease' or 'finance'. |
| `province` | string | No | Canadian province code: ON, BC, AB, SK, MB, QC, NB, NS, PE, NL. |
| `term` | integer | No | Lease/finance term in months (e.g., 24, 36, 48, 60). |
| `transmission_key` | string | Yes | Transmission key from get_models (e.g., '10312-Automatic'). |
| `trim_key` | string | Yes | Trim key from get_models (e.g., 'rdx_10337', 'adx_10344'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-acura-ca-api-8b0bae91/calculate_payment \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"down_payment":"<number>","km_allowance":"<integer>","language":"<string>","model_key":"<string>","model_year":"<integer>","payment_method":"<string>","province":"<string>","term":"<integer>","transmission_key":"<string>","trim_key":"<string>"}'
```

### get_models

Get all current Acura models with trims, transmissions, and MSRP pricing. Returns the full vehicle catalog needed to look up keys for other endpoints. Each model contains nested trims, each trim contains nested transmissions with MSRP. The keys returned here (model_key, trim_key, transmission_key) are required inputs for calculate_payment.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Language code for response content. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-acura-ca-api-8b0bae91/get_models \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"<string>"}'
```

### get_offers

Get current incentive offers (lease, finance, cash rebates) for Acura models in a specific Canadian province. Optionally filter by model name. Returns an empty offers array when no incentives are currently active for the requested model/province combination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `language` | string | No | Language code for response content. |
| `model` | string | No | Filter by model name (e.g., 'adx', 'mdx', 'rdx', 'integra'). Leave empty for all models. |
| `province` | string | No | Canadian province code: ON, BC, AB, SK, MB, QC, NB, NS, PE, NL. |

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