# Cfmotousa — 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 cfmotousa.com.

**Category:** Automotive | **Website:** [www.cfmotousa.com/accessories](https://www.cfmotousa.com/accessories) | **Docs:** [parse.bot/marketplace/a17c2106-b833-45ca-b6c4-114ad5d851c2/cfmotousa-com-api](https://parse.bot/marketplace/a17c2106-b833-45ca-b6c4-114ad5d851c2/cfmotousa-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-cfmotousa-com-api-a17c2106/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_fitment_levels

Get available years and vehicle models for a specific catalog. Used to discover valid vehicle_id values for list_catalog_products. Call without fit parameter to get available years, then call with fit set to a year (e.g. '2026') to get available models for that year. Only works with off-road, on-road, and oil/lubricants catalogs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `catalog` | string | Yes | The catalog to query fitment levels for. |
| `fit` | string | No | Fitment level to query. Omit to get available years. Pass a year (e.g. '2026') to get available vehicle models for that year. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cfmotousa-com-api-a17c2106/get_fitment_levels \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"catalog":"<string>","fit":"<string>"}'
```

### get_product_detail

Get detailed information about a specific accessory product including description, item number, color options, fitment compatibility, and images. The product_path is constructed from the product URL returned by list_catalog_products (the path after /oemcatalogs/p/).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_path` | string | Yes | Product path from list_catalog_products results (e.g. 'all/cfmoto_apparel_gear/651af63834354d8f07854cea/beanie' or '2026_cforce_1000_overland/cfmoto_off_road_accessories/644840bf535f7235e3925d23/bumper-front'). Derived from the url field of products by stripping the '/oemcatalogs/p/' prefix. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cfmotousa-com-api-a17c2106/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_path":"<string>"}'
```

### list_catalog_products

List products from a CFMOTO accessories catalog. Supports 4 catalogs: off-road accessories, on-road accessories, oil/lubricants (crafted), and apparel/gear. Off-road, on-road, and oil catalogs can be filtered by vehicle_id for fitment-specific results. Apparel/gear returns all products without vehicle filtering. Results are auto-iterated across pages (20 products per page).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `catalog` | string | Yes | The accessories catalog to browse. |
| `page` | integer | No | Page number for pagination (1-based). |
| `vehicle_id` | string | No | Vehicle identifier for fitment-specific results (e.g. '2026_cforce_1000_overland', '2026_ibex_800_e'). Obtain valid values from the get_fitment_levels endpoint. Required for off-road, on-road, and oil catalogs; ignored for apparel/gear. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cfmotousa-com-api-a17c2106/list_catalog_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"catalog":"<string>","page":"<integer>","vehicle_id":"<string>"}'
```
