# Jiage Autohome — 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 real owner-reported car prices and detailed vehicle specifications directly from Autohome's extensive Chinese automotive database. Search and retrieve pricing lists and spec data to compare vehicles and make informed purchasing decisions.

**Category:** Automotive | **Website:** [jiage.autohome.com.cn/price/carlist/p-75178-0-0-0-0-0-1-310100](https://jiage.autohome.com.cn/price/carlist/p-75178-0-0-0-0-0-1-310100) | **Docs:** [parse.bot/marketplace/4ab79ce3-68b2-461b-a9bb-40ebd98a6b1d/jiage-autohome-com-cn-api](https://parse.bot/marketplace/4ab79ce3-68b2-461b-a9bb-40ebd98a6b1d/jiage-autohome-com-cn-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-jiage-autohome-com-cn-api-4ab79ce3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_price_list

Get car owner price listings for a specific car spec/trim. Returns purchase details including user info, dates, location, and price data. Price values may be partially decoded due to site-side obfuscation techniques. Paginates at 10 entries per page; use page to advance. Each entry represents one owner's reported purchase price breakdown.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city_filter` | string | No | City code filter. 0 for nationwide results, or a specific city code such as 310100 for Shanghai, 320500 for Suzhou. |
| `max_pages` | integer | No | Number of consecutive pages to fetch in a single request (10 entries per page). |
| `page` | integer | No | Page number (1-based). Each page contains up to 10 entries. |
| `spec_id` | string | No | Car spec ID identifying the trim/configuration. Use get_spec_list to find available IDs for a series. |
| `user_city` | string | No | User city code for regional display context (e.g. 310100 for Shanghai). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jiage-autohome-com-cn-api-4ab79ce3/get_price_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city_filter":"<string>","max_pages":"<integer>","page":"<integer>","spec_id":"<string>","user_city":"<string>"}'
```

### get_spec_list

Get available car specs/trims for a series, grouped by model year. Returns spec IDs, names, sale state, and MSRP prices. Use the returned spec IDs as input to get_price_list to fetch owner-reported prices for that trim.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `series_id` | string | No | Car series ID identifying the vehicle model line (e.g. 442 for Sagitar/速腾). Use Autohome's series listing to find the ID for the vehicle you want. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jiage-autohome-com-cn-api-4ab79ce3/get_spec_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"series_id":"<string>"}'
```
