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 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 authorityPrimary official publisherIndependent cleaned dataset layer
Developer APIOften query pages, files, or releasesStable JSON and CSV endpoints
Language and labelsOften Chinese-first or source-specificEnglish titles, units, slugs, and notes
Best useVerification and audit trailApplications, 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.

๐Ÿ’ฌ Need custom data?