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

> Access data from tesla.com.

**Category:** Automotive | **Website:** [tesla.com/](https://tesla.com/) | **Docs:** [parse.bot/marketplace/9a454bda-ba78-4403-bd45-54cc059d9f2b/tesla-com-api](https://parse.bot/marketplace/9a454bda-ba78-4403-bd45-54cc059d9f2b/tesla-com-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-tesla-com-api-9a454bda/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_vehicles

Returns all Tesla products from the megamenu navigation, spanning vehicles, energy, charging, and shop categories. Each product includes its name, relative URL path, category grouping, and thumbnail image URL. The full catalog is returned in a single page.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tesla-com-api-9a454bda/get_all_vehicles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_current_offers

Extracts Tesla's current incentives and special offers for the US market. Returns a flattened list of all vehicle variants with their best available financing (lowest APR loan) and lease (lowest monthly payment) options pre-selected. Useful for comparing deals across all models without parsing the nested pricing structure.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tesla-com-api-9a454bda/get_current_offers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_energy_products

Returns Tesla energy products (Solar Panels, Solar Roof, Powerwall, Megapack) with learn and order URLs extracted from the site megamenu. Each product includes its name, learn URL, order URL (if available), thumbnail image, and category.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tesla-com-api-9a454bda/get_energy_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_vehicle_pricing

Returns detailed pricing data for all Tesla vehicle models in a given market. Data is grouped by market code and model code (ct=Cybertruck, m3=Model 3, ms=Model S, mx=Model X, my=Model Y). Each variant includes cash price, destination fee, federal/regional incentives, loan options (APR, term, monthly payment, down payment), and lease options (monthly payment, term, down payment, annual mileage allowance). The response is keyed by market code at the top level.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `market` | string | No | Market code for pricing region. Verified working values: US, CA, FR. |
| `region` | string | No | Region code for regional incentives. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tesla-com-api-9a454bda/get_vehicle_pricing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"market":"<string>","region":"<string>"}'
```
