China CAAM Data API Guide: Auto Sales, NEV Data & CSV
Use CAAM and official industry releases for source verification, then use China Data Portal for selected China vehicle and NEV datasets in clean API-ready form.
Developer quick start
Use the official source for verification. Use chinadata.live for stable JSON and CSV.
Many official China data portals publish statistics through web tables, Excel downloads, PDFs, release articles, or query systems rather than a stable public JSON API. China Data Portal turns selected official-source datasets into clean JSON and CSV endpoints.
Official source
China Association of Automobile Manufacturers (CAAM)CAAM publishes automotive statistics and facts through monthly and annual pages, releases, and industry summaries.
JSON / CSV
curl https://chinadata.live/api/v2/data/china-nev-sales curl -L "https://chinadata.live/api/v2/data/china-nev-sales?format=csv"
What Searchers Usually Need
Searches such as caam data api , china auto sales data api , china nev sales csv , or china vehicle production data usually mix two jobs: locating the official source and getting a stable dataset for an app, spreadsheet, dashboard, or research workflow.
Use China Association of Automobile Manufacturers (CAAM) for source verification
- Verify vehicle production, sales, NEV, and export figures.
- Check monthly release wording and category definitions.
- Capture source notes for auto-market analysis.
Use ChinaData.live for reusable outputs
- Fetch selected auto production, sales, NEV, and export datasets.
- Compare China with global auto and EV series.
- Use CSV downloads for spreadsheets and recurring reports.
Source caveat
Official industry pages are useful for release tracking, while product teams often need stable JSON, CSV downloads, and consistent series names.
Available JSON and CSV Endpoints
These are China Data Portal endpoints built from selected official-source datasets. They are designed for repeatable analysis, source-aware dashboards, and spreadsheet workflows.
/api/v2/data/china-nev-sales /api/v2/data/china-vehicle-exports-by-region /api/v2/data/china-caam-vehicle-sales /api/v2/data/china-caam-vehicle-production API Examples
Every listed dataset supports JSON by default. Dataset endpoints also support CSV output by adding ?format=csv.
import requests
base = "https://chinadata.live"
json_data = requests.get(base + "/api/v2/data/china-nev-sales", timeout=20).json()
csv_text = requests.get(base + "/api/v2/data/china-nev-sales?format=csv", timeout=20).text
print(json_data["data"]["title"])
print(csv_text.splitlines()[0]) Official Source vs China Data Portal
| Need | Official source | China Data Portal |
|---|---|---|
| Source authority | Primary official publisher | Independent cleaned dataset layer |
| Developer API | Often query pages, files, or releases | Stable JSON and CSV endpoints |
| Language and labels | Often Chinese-first or source-specific | English titles, units, slugs, and notes |
| Best use | Verification and audit trail | Applications, charts, CSV workflows |
FAQ
What does CAAM publish?
CAAM publishes China auto industry statistics such as production, sales, NEV activity, commercial vehicles, passenger vehicles, and exports.
Is China Data Portal the official CAAM API?
No. China Data Portal is an independent data portal that provides selected official-source and industry-source China datasets in JSON and CSV form.
Can I download China auto sales as CSV?
Yes. Supported auto datasets can be downloaded from their dataset pages or fetched with ?format=csv on the API endpoint.