China MOT Data API Guide: Ports, Freight, Bridges & CSV
Use Ministry of Transport source publications for official transport context, then use China Data Portal for selected port, freight, bridge, and rail datasets.
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
Ministry of Transport of China (MOT)MOT and related government pages publish statistics through bulletins, source tables, and news releases rather than one simple English REST API.
JSON / CSV
curl https://chinadata.live/api/v2/data/china-port-throughput curl -L "https://chinadata.live/api/v2/data/china-port-throughput?format=csv"
What Searchers Usually Need
Searches such as china port throughput data api , ministry of transport china statistics , china freight data csv , or china transport statistics api usually mix two jobs: locating the official source and getting a stable dataset for an app, spreadsheet, dashboard, or research workflow.
Use Ministry of Transport of China (MOT) for source verification
- Verify official transport bulletin figures and definitions.
- Check port throughput and freight release context.
- Record source notes for infrastructure analysis.
Use ChinaData.live for reusable outputs
- Fetch port throughput and transport datasets through stable URLs.
- Download CSV files for dashboards and logistics analysis.
- Use related dataset pages for source notes and chart-ready series.
Source caveat
Transport data often spans ports, freight, bridges, rail, and city infrastructure, so consistent slugs and CSV columns matter for analysis.
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-port-throughput /api/v2/data/china-freight-volume /api/v2/data/china-road-bridges /api/v2/data/china-railway-mileage 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-port-throughput", timeout=20).json()
csv_text = requests.get(base + "/api/v2/data/china-port-throughput?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 transport data can I fetch?
Supported examples include China port throughput, freight volume, road bridges, railway mileage, and other transport indicators available on China Data Portal.
Are these official MOT endpoints?
No. The endpoints are China Data Portal URLs built from selected official-source datasets and source notes.
Why create a separate MOT API guide?
Users searching for MOT statistics often need usable CSV or JSON, not just a bulletin page. This guide connects the official source path to reusable datasets.